We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents fc7ea25 + 6251c65 commit 8df95e1Copy full SHA for 8df95e1
Build/scripts/run_build.ps1
@@ -85,7 +85,8 @@ $buildlogsPath = Join-Path $binDir $buildlogsSubdir
85
86
$skipPogo = $skipPogo -or (Test-Path Env:\SKIP_POGO)
87
88
-if (("$binpath" -ne "") -or (-not (Test-Path $binpath))) {
+# if $binpath is not set or if it is an invalid path, then infer it
89
+if ((-not $binpath) -or (-not (Test-Path $binpath))) {
90
$binpath = Join-Path $binDir "bin\${buildName}"
91
}
92
0 commit comments