File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ jobs:
1515 run : |
1616 if (!(Test-Path "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat")) {
1717 Write-Host ERROR: Could not locate 'vcvars' batch file. This script is intended to be run from a build machine
18- exit /B 1
18+ exit 1
1919 }
2020
2121 & "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvars64.bat"
2222
2323 & .\find_clang_format.cmd
2424 if ($LASTEXITCODE -ne 0) {
25- exit /b $LASTEXITCODE
25+ exit $LASTEXITCODE
2626 }
2727
2828 & git clang-format origin/master --binary "$env:CLANG_FORMAT" --style file -- cppwinrt/*.h cppwinrt/*.cpp fast_fwd/*.h fast_fwd/*.cpp prebuild/*.h prebuild/*.cpp scratch/*.h scratch/*.cpp strings/*.h strings/*.cpp test/*.h test/*.cpp vsix/*.h vsix/*.cpp
4040 Write-Host NOTE: As an additional note, given that different versions of `'clang-format`' may have different behaviors, this
4141 Write-Host may be a false positive. If you believe that to be the case ^`(e.g. none of the above resulted in modifications
4242 Write-Host to the code you have changed^`), please note this in your PR.
43- exit /b 1
43+ exit 1
4444 }
4545
4646 test-msvc-cppwinrt-build :
You can’t perform that action at this time.
0 commit comments