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.
1 parent 3a99280 commit 09e1740Copy full SHA for 09e1740
.github/workflows/codeql-daily.yml
@@ -157,8 +157,8 @@ jobs:
157
$batchFile = 'run-cpp-build.bat'
158
Set-Content -Path $batchFile -Value $buildScript -NoNewline
159
160
- # Call vcvars64.bat and then the batch file (fix quoting)
161
- & cmd /c "$vcvarsPath && $batchFile"
+ # Call vcvars64.bat and then the batch file (fix quoting for spaces)
+ & cmd /c "`"$vcvarsPath`" && $batchFile"
162
163
- name: Perform CodeQL analysis
164
uses: github/codeql-action/analyze@v3
0 commit comments