summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar James Rowe2017-02-23 10:01:50 -0700
committerGravatar James Rowe2017-02-23 10:01:50 -0700
commitc4de706ace1859224b4c90a6ddb5d963f5be057a (patch)
tree0e8ac2b6133c1b452679d8ad35633cdf4b85defb
parent[UI] Modify recursive scanning label (#2589) (diff)
downloadyuzu-c4de706ace1859224b4c90a6ddb5d963f5be057a.tar.gz
yuzu-c4de706ace1859224b4c90a6ddb5d963f5be057a.tar.xz
yuzu-c4de706ace1859224b4c90a6ddb5d963f5be057a.zip
Use gzip instead of lzma on macOS and linux releases
A common report from macOS users is they can't figure out how to unzip the program. This will allow them to double click to unzip the archive which is what users on macOS expect.
-rwxr-xr-x.travis-upload.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/.travis-upload.sh b/.travis-upload.sh
index 9aed815d4..bab169527 100755
--- a/.travis-upload.sh
+++ b/.travis-upload.sh
@@ -118,8 +118,8 @@ EOL
118 cp license.txt "$REV_NAME" 118 cp license.txt "$REV_NAME"
119 cp README.md "$REV_NAME" 119 cp README.md "$REV_NAME"
120 120
121 ARCHIVE_NAME="${REV_NAME}.tar.xz" 121 ARCHIVE_NAME="${REV_NAME}.tar.gz"
122 tar -cJvf "$ARCHIVE_NAME" "$REV_NAME" 122 tar -czvf "$ARCHIVE_NAME" "$REV_NAME"
123 123
124 # move the compiled archive into the artifacts directory to be uploaded by travis releases 124 # move the compiled archive into the artifacts directory to be uploaded by travis releases
125 mv "$ARCHIVE_NAME" artifacts/ 125 mv "$ARCHIVE_NAME" artifacts/