Skip to content

Commit c287a1c

Browse files
committed
fixup variable interpolation for shell: cmd
Signed-off-by: William Woodruff <[email protected]>
1 parent 2d4fc52 commit c287a1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ jobs:
154154
if: ${{ ! matrix.dry-run }}
155155
shell: cmd
156156
run: |
157-
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\${MATRIX_VCVARS}"
158-
py.exe -3.12 build-windows.py --python cpython-${MATRIX_PYTHON} --sh c:\cygwin\bin\sh.exe --options ${MATRIX_BUILD_OPTIONS}
157+
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\%MATRIX_VCVARS%"
158+
py.exe -3.12 build-windows.py --python cpython-%MATRIX_PYTHON% --sh c:\cygwin\bin\sh.exe --options %MATRIX_BUILD_OPTIONS%
159159
env:
160160
MATRIX_VCVARS: ${{ matrix.vcvars }}
161161
MATRIX_PYTHON: ${{ matrix.python }}

0 commit comments

Comments
 (0)