File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -253,18 +253,18 @@ jobs:
253253 shell : pwsh
254254 run : |
255255 $destfile = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.zip"
256- Write-Output "env.WINPYZIP: $env.WINPYZIP and destfile: $destfile"
257- if ($env.WINPYZIP -eq '1') {
256+ Write-Output $env.WINPYZIP
257+ if ( $env.WINPYZIP -eq '1') {
258258 Write-Output "WINPYZIPing"
259259 Compress-Archive -Path "$env:build_location" -DestinationPath $destfile
260260 }
261261
262262 $destfile7z = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.7z"
263- if ($env.WINPY7Z -eq '1') { 7z a $destfile7z $env:build_location }
263+ if ( $env.WINPY7Z -eq '1') { 7z a $destfile7z $env:build_location }
264264
265265 $destfileexe = "publish_output\WinPython$env:WINPYARCH-$env:WINPYVER.exe"
266266 $SFXModulePath = "C:\Program Files\7-Zip\7z.sfx"
267- if ($env.WINPYEXE -eq '1') { 7z a -t7z -sfx"$SFXModulePath" $destfileexe $env:build_location }
267+ if ( $env.WINPYEXE -eq '1') { 7z a -t7z -sfx"$SFXModulePath" $destfileexe $env:build_location }
268268
269269 - name : generate hashes wppm style
270270 if : env.WINPYREQUIREMENTS != ''
You can’t perform that action at this time.
0 commit comments