File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff 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 != ''
You can’t perform that action at this time.
0 commit comments