Skip to content

Commit

Permalink
Fix .tar.gz compression
Browse files Browse the repository at this point in the history
The generated .tar.gz releases were in fact non-gzipped tarballs.

Fixes #5581 <#5581>
  • Loading branch information
rom1v committed Dec 2, 2024
1 parent 3b2b362 commit 36574d2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion release/package_client.sh
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ case "$FORMAT" in
zip -r "$OUTPUT_DIR/$TARGET_DIRNAME.zip" "$TARGET_DIRNAME"
;;
tar.gz)
tar cvf "$OUTPUT_DIR/$TARGET_DIRNAME.tar.gz" "$TARGET_DIRNAME"
tar cvzf "$OUTPUT_DIR/$TARGET_DIRNAME.tar.gz" "$TARGET_DIRNAME"
;;
*)
echo "Invalid format (expected zip or tar.gz): $FORMAT" >&2
Expand Down

0 comments on commit 36574d2

Please sign in to comment.