View Single Post
  #2  
Old 12-21-2007, 10:58 PM
kevina kevina is online now
Registered User
 
Join Date: 03-26-2003
Posts: 825
One method is to add another Sign Code step before your current Sign Code step, set to Verify (command) which will fail if the binary is unsigned. Also set this "verify" step to Continue Building on failure.

Then conditionally build your (immediately following) actual Sign Code step to only build when the last step failed (use this script expression):
Code:
[%LASTSTEP_STATUS% = vbldStepStatFailed]
"is true"
Reply With Quote