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