...
Code Block | ||||
---|---|---|---|---|
| ||||
# just call ignoreStatus for File that this shell did not process ignoreStatus | ||||
Excerpt | ||||
|
Overriding the file status
There may be cases when you want to manually set the status for any particular file when scripting. The below functions can be utilized to set the status of the file as you see fit:
Code Block | ||
---|---|---|
| ||
setObjectResultStatusSuccess
setObjectResultStatusFailed
setObjectResultStatusSkipped
setObjectResultStatusNotAttempted
setObjectResultStatusIgnore |
In the case where your Build or Deployment is hanging on your PowerShell plugin step, the most common issue is that the cmdlet you entered requires user input. If this occurs then you need to force
the cmdlet to complete without the user input and then re-build or re-deploy.
...