Skip to content

Commit 86106e3

Browse files
authored
Escape path so that paths with spaces work (#18136)
Co-authored-by: John Wostenberg <[email protected]>
1 parent f0f6c65 commit 86106e3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

eng/build-utils.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -243,7 +243,7 @@ function Make-BootstrapBuild() {
243243

244244
# prepare compiler
245245
$projectpath = "$RepoRoot" + "proto.proj"
246-
$args = "publish $projectpath -c $bootstrapConfiguration"
246+
$args = "publish `"$projectpath`" -c $bootstrapConfiguration"
247247
if ($binaryLog) {
248248
$logFilePath = Join-Path $LogDir "bootstrap.binlog"
249249
$args += " /bl:`"$logFilePath`""

0 commit comments

Comments
 (0)