We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 88a45b5 commit 9cf50acCopy full SHA for 9cf50ac
1 file changed
Bootstrap.ps1
@@ -9,11 +9,11 @@ param (
9
$IsDebug = $false
10
11
if (($JobId -and -not $SessionId) -or (-not $JobId -and $SessionId)) {
12
- Write-Output "ERROR: If one of JobId or SessionId is provided, the other must also be specified."
+ Write-Output 'ERROR: If one of JobId or SessionId is provided, the other must also be specified.'
13
exit 1
14
}
15
elseif ($JobId -and $SessionId) {
16
- Write-Output "INFO: JobId and SessionId are provided. Using them to start the script."
+ Write-Output 'INFO: JobId and SessionId are provided. Using them to start the script.'
17
$IsDebug = $true
18
19
0 commit comments