From 86106e3546bf56b7d5fbed746e8cd55279401932 Mon Sep 17 00:00:00 2001 From: John Wostenberg <4031185+jwosty@users.noreply.github.com> Date: Fri, 13 Dec 2024 04:49:50 -0600 Subject: [PATCH] Escape path so that paths with spaces work (#18136) Co-authored-by: John Wostenberg --- 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`""