From fbd8489929b454ac32a4752203e453697beb6aca Mon Sep 17 00:00:00 2001 From: John Wostenberg Date: Fri, 13 Dec 2024 01:24:24 -0600 Subject: [PATCH] Escape path so that paths with spaces work --- eng/build-utils.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/eng/build-utils.ps1 b/eng/build-utils.ps1 index 3c870011188..068f28bfc41 100644 --- a/eng/build-utils.ps1 +++ b/eng/build-utils.ps1 @@ -243,7 +243,7 @@ function Make-BootstrapBuild() { # prepare compiler $projectpath = "$RepoRoot" + "proto.proj" - $args = "publish $projectpath -c $bootstrapConfiguration" + $args = "publish `"$projectpath`" -c $bootstrapConfiguration" if ($binaryLog) { $logFilePath = Join-Path $LogDir "bootstrap.binlog" $args += " /bl:`"$logFilePath`""