mirror of
https://github.com/Genymobile/scrcpy.git
synced 2025-04-19 19:15:08 +00:00
Fix .tar.gz compression
The generated .tar.gz releases were in fact non-gzipped tarballs. Fixes #5581 <https://github.com/Genymobile/scrcpy/issues/5581>
This commit is contained in:
parent
3b2b3625e4
commit
36574d2ee7
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Reference in a new issue