put quotes around arguments to prevent command injection

This commit is contained in:
Nikita
2025-07-22 10:57:43 -07:00
committed by Ryan Fleury
parent 07c7178770
commit 295a822889
+1 -1
View File
@@ -31,7 +31,7 @@ jobs:
shell: cmd
run: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" x64
call build ${{ matrix.target }} ${{ matrix.compiler }} ${{ matrix.mode }} || exit /b 1
call build "${{ matrix.target }}" "${{ matrix.compiler }}" "${{ matrix.mode }}" || exit /b 1
run-torture:
runs-on: windows-2022