Normalize MSVC PATH export for archive probe

This commit is contained in:
starr-openai
2026-05-13 16:06:53 -07:00
parent 202487bd63
commit 9c6ce80d08

View File

@@ -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
}
}