Build.BlitzBuild - sleep
Description
Stops the execution of the build script for a set period of time. Useful if certain steps require an interval before executing.
Parameters
Table 7. Parameters
| Attribute | Type | Description | Required |
|---|---|---|---|
| hours | int | Number of hours to pause for. | false |
| minutes | int | Number of minutes to pause for. | false |
| seconds | int | Number of seconds to pause for. | false |
| milliseconds | int | Number of milliseconds to pause for. | false |
| if | bool | If true, the task will be executed, otherwise it will be skipped. The default is true. | False |
| unless | bool | The opposite of if. If false, the task will be executed, otherwise it will be skipped. The default is false. | False |