Skip to content

Commit a58ea19

Browse files
committed
fix
1 parent ee7396d commit a58ea19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -133,14 +133,14 @@ jobs:
133133
SCCACHE_GHA_ENABLED: "true"
134134
run: |
135135
$ErrorActionPreference = "Stop"
136-
cmd /c "call \"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat\" x64 && bash -lc \"ci/scripts/build_iceberg.sh `$(pwd) OFF ON\""
136+
cmd /c "call `"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat`" x64 && bash -lc `"ci/scripts/build_iceberg.sh `$(pwd) OFF ON`""
137137
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
138138
sccache --show-stats
139139
- name: Build Example
140140
shell: pwsh
141141
run: |
142142
$ErrorActionPreference = "Stop"
143-
cmd /c "call \"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat\" x64 && bash -lc \"ci/scripts/build_example.sh `$(pwd)/example\""
143+
cmd /c "call `"C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat`" x64 && bash -lc `"ci/scripts/build_example.sh `$(pwd)/example`""
144144
meson:
145145
name: Meson - ${{ matrix.title }}
146146
runs-on: ${{ matrix.runs-on }}

0 commit comments

Comments
 (0)