diff options
author | James Rowe <jroweboy@gmail.com> | 2017-02-23 10:01:50 -0700 |
---|---|---|
committer | James Rowe <jroweboy@gmail.com> | 2017-02-23 10:01:50 -0700 |
commit | c4de706ace1859224b4c90a6ddb5d963f5be057a (patch) | |
tree | 0e8ac2b6133c1b452679d8ad35633cdf4b85defb | |
parent | a7360f26421fb6c69bc095e31833836e06d894ac (diff) |
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.sh | 4 |
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 cp license.txt "$REV_NAME" cp README.md "$REV_NAME" - ARCHIVE_NAME="${REV_NAME}.tar.xz" - tar -cJvf "$ARCHIVE_NAME" "$REV_NAME" + ARCHIVE_NAME="${REV_NAME}.tar.gz" + tar -czvf "$ARCHIVE_NAME" "$REV_NAME" # move the compiled archive into the artifacts directory to be uploaded by travis releases mv "$ARCHIVE_NAME" artifacts/ |