X Tutup
Skip to content

Commit 2859c80

Browse files
committed
revert
1 parent 7e8ef22 commit 2859c80

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

.github/workflows/github_workflows_build-2026_01.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -262,9 +262,12 @@ jobs:
262262
shell: pwsh
263263
run: |
264264
& "$env:build_location\python\python.exe" -m pip download --dest $env:dotwheelhouse --no-deps --require-hashes -r $env:WINPYREQUIREMENTS
265-
if ($env.WINPYREQUIREMENTSwhl -ne "") {
266-
& "$env:build_location\python\python.exe" -m pip download --dest $env:destwheelhouse --no-deps --require-hashes -r $env:WINPYREQUIREMENTSwhl
267-
}
265+
266+
- name: Download requirements to $env:dotwheelhouse
267+
if: env.WINPYREQUIREMENTSwhl != ''
268+
shell: pwsh
269+
run: |
270+
& "$env:build_location\python\python.exe" -m pip download --dest $env:destwheelhouse --no-deps --require-hashes -r $env:WINPYREQUIREMENTSwhl
268271
269272
- name: Install requirements
270273
if: env.WINPYREQUIREMENTS != ''

0 commit comments

Comments
 (0)
X Tutup