Skip to content

Commit 3e47ee7

Browse files
committed
Quotes
1 parent d47a4fe commit 3e47ee7

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/reusable-windows-msi.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,5 +32,5 @@ jobs:
3232
persist-credentials: false
3333
- name: Build CPython installer
3434
shell: powershell
35-
run: ./Tools/msi/build.bat --doc -${env:ARCH}
35+
run: ./Tools/msi/build.bat --doc -"${env:ARCH}"
3636

.github/workflows/reusable-windows.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,15 +40,15 @@ jobs:
4040
run: >-
4141
.\\PCbuild\\build.bat
4242
-e -d -v
43-
-p ${env:ARCH}
43+
-p "${env:ARCH}"
4444
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
4545
shell: powershell
4646
- name: Display build info
4747
run: .\\python.bat -m test.pythoninfo
4848
- name: Tests
4949
run: >-
5050
.\\PCbuild\\rt.bat
51-
-p ${env:ARCH}
51+
-p "${env:ARCH}"
5252
-d -q --fast-ci
5353
${{ fromJSON(inputs.free-threading) && '--disable-gil' || '' }}
5454
shell: powershell

0 commit comments

Comments
 (0)