Skip to content

Commit

Permalink
gzip with -c for stdout?
Browse files Browse the repository at this point in the history
  • Loading branch information
lleyton authored Nov 2, 2024
1 parent 98de8b4 commit 901c546
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/build-katsu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ jobs:
# compress tar as zst, output as .tar.zst
# have an exception for WSL, as it doesn't support zstd
if [ "${{ matrix.variant }}" = "wsl/wsl" ]; then
gzip -9 katsu-work/${{ env.artifact }}.tar > katsu-work/${{ env.artifact }}.tar.gz
gzip -9 -c katsu-work/${{ env.artifact }}.tar > katsu-work/${{ env.artifact }}.tar.gz
else
zstd -T0 -19 katsu-work/${{ env.artifact }}.tar -o katsu-work/${{ env.artifact }}.tar.zst
fi
Expand Down

0 comments on commit 901c546

Please sign in to comment.