Skip to content

Commit f74d7aa

Browse files
committed
fix
1 parent e684c34 commit f74d7aa

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
@@ -97,14 +97,14 @@ jobs:
9797
SCCACHE_GHA_ENABLED: "true"
9898
run: |
9999
$ErrorActionPreference = "Stop"
100-
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\""
100+
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`""
101101
if ($LASTEXITCODE -ne 0) { exit $LASTEXITCODE }
102102
sccache --show-stats
103103
- name: Build Example
104104
shell: pwsh
105105
run: |
106106
$ErrorActionPreference = "Stop"
107-
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\""
107+
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`""
108108
meson:
109109
name: Meson - ${{ matrix.title }}
110110
runs-on: ${{ matrix.runs-on }}

0 commit comments

Comments
 (0)