We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 44a2b2b + 9b1eb51 commit ad2df1fCopy full SHA for ad2df1f
.github/workflows/windows-build.yml
@@ -26,7 +26,7 @@ jobs:
26
echo "=== Toolchain ==="
27
rustc --version
28
cargo --version
29
- cl /? 2>&1 | findstr /C:"Version" || echo "MSVC not in PATH"
+ if (Get-Command cl -ErrorAction SilentlyContinue) { cl /? 2>&1 | findstr /C:"Version" } else { echo "MSVC not in PATH" }
30
- name: Fetch
31
run: cargo fetch
32
- name: Build
0 commit comments