Skip to content
Snippets Groups Projects
Commit c4de706a authored by James Rowe's avatar James Rowe
Browse files

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.
parent a7360f26
No related branches found
No related tags found
No related merge requests found
...@@ -118,8 +118,8 @@ EOL ...@@ -118,8 +118,8 @@ EOL
cp license.txt "$REV_NAME" cp license.txt "$REV_NAME"
cp README.md "$REV_NAME" cp README.md "$REV_NAME"
ARCHIVE_NAME="${REV_NAME}.tar.xz" ARCHIVE_NAME="${REV_NAME}.tar.gz"
tar -cJvf "$ARCHIVE_NAME" "$REV_NAME" tar -czvf "$ARCHIVE_NAME" "$REV_NAME"
# move the compiled archive into the artifacts directory to be uploaded by travis releases # move the compiled archive into the artifacts directory to be uploaded by travis releases
mv "$ARCHIVE_NAME" artifacts/ mv "$ARCHIVE_NAME" artifacts/
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment