Skip to content

Commit dd789a9

Browse files
committed
Minor changes
1 parent 229f517 commit dd789a9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.pipelines/templates/SetVersionVariables.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ steps:
2323
}
2424
if(Test-Path -Path $path)
2525
{
26-
Write-Verbose "reporoot detect at: ." -Verbose
26+
Write-Verbose "reporoot detected at: ." -Verbose
2727
$repoRoot = '.'
2828
}
2929
else{
@@ -51,7 +51,7 @@ steps:
5151
$REPOROOT = $env:REPOROOT
5252
5353
if (-not (Test-Path $REPOROOT/tools/releaseBuild/setReleaseTag.ps1)) {
54-
if ((Test-Path "$REPOROOT/PowerShell/tools/releaseBuild/setReleaseTag.ps1")) {
54+
if (Test-Path "$REPOROOT/PowerShell/tools/releaseBuild/setReleaseTag.ps1") {
5555
$REPOROOT = "$REPOROOT/PowerShell"
5656
} else {
5757
throw "Could not find setReleaseTag.ps1 in $REPOROOT/tools/releaseBuild or $REPOROOT/PowerShell/tools/releaseBuild"
@@ -72,7 +72,7 @@ steps:
7272
ob_restore_phase: true # This ensures this done in restore phase to workaround signing issue
7373

7474
- powershell: |
75-
Get-ChildItem -Path env: | Out-String -width 9999 -Stream | write-Verbose -Verbose
75+
Get-ChildItem -Path Env: | Out-String -Width 150
7676
displayName: Capture environment
7777
condition: succeededOrFailed()
7878
env:

0 commit comments

Comments
 (0)