We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c380bb7 commit 98e3185Copy full SHA for 98e3185
.github/workflows/lib-build-and-push.yml
@@ -125,6 +125,7 @@ jobs:
125
echo "CC=clang" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
126
echo "CXX=clang++" | Out-File -FilePath $env:GITHUB_ENV -Encoding utf8 -Append
127
$envPath = [System.Environment]::GetEnvironmentVariable("Path", "Machine")
128
+ echo $envPath
129
$pathArray = $envPath -split ";"
130
$filteredPaths = $pathArray | Where-Object { $_ -notmatch "Microsoft Visual Studio" }
131
$newPath = ($filteredPaths -join ";").TrimEnd(";")
0 commit comments