Thread
:
Build step not being skipped
View Single Post
#
2
08-04-2005, 05:51 PM
kinook
Administrator
Join Date: 03-06-2001
Location: Colorado
Posts: 6,049
The vbld_StepDone event still fires if a step's action is skipped. If you need to execute some logic in the event only if it wasn't skipped, use code like this:
If Step.BuildStatus <> vbldStepStatSkipped Then
' logic if not skipped goes here
End If
kinook
View Public Profile
Visit kinook's homepage!
Find all posts by kinook