From 9c6ce80d08c51aee984e26a1911c67f01321cf4f Mon Sep 17 00:00:00 2001 From: starr-openai Date: Wed, 13 May 2026 16:06:53 -0700 Subject: [PATCH] Normalize MSVC PATH export for archive probe --- .github/scripts/setup-dev-drive.ps1 | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/scripts/setup-dev-drive.ps1 b/.github/scripts/setup-dev-drive.ps1 index 48bf6b79a6..f8b74544d9 100644 --- a/.github/scripts/setup-dev-drive.ps1 +++ b/.github/scripts/setup-dev-drive.ps1 @@ -66,6 +66,9 @@ function Export-MsvcEnvironment { $name = $matches[1] $value = $matches[2] if ($varsToExport -contains $name) { + if ($name -ieq "Path") { + $name = "PATH" + } "$name=$value" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append } }