diff options
| author | James Rowe <jroweboy@gmail.com> | 2017-02-25 14:02:46 -0700 | 
|---|---|---|
| committer | James Rowe <jroweboy@gmail.com> | 2017-02-25 14:02:46 -0700 | 
| commit | bf325d3859bb5f63092e18b122e38842b6ace6c7 (patch) | |
| tree | 007e809e66bbd3833aa5e263e515e8071697fecc | |
| parent | 892888ed9e7c683150493c7c17f567d3c569e62e (diff) | |
Change travis tar command to specify compression format
macOS uses bsdtar which doesn't have the -a flag which determines
compression based on file extension.
| -rwxr-xr-x | .travis-upload.sh | 4 | 
1 files changed, 3 insertions, 1 deletions
diff --git a/.travis-upload.sh b/.travis-upload.sh index 262259678..2cc968298 100755 --- a/.travis-upload.sh +++ b/.travis-upload.sh @@ -6,6 +6,7 @@ if [ "$TRAVIS_EVENT_TYPE" = "push" ]&&[ "$TRAVIS_BRANCH" = "master" ]; then      if [ "$TRAVIS_OS_NAME" = "linux" -o -z "$TRAVIS_OS_NAME" ]; then          REV_NAME="citra-linux-${GITDATE}-${GITREV}"          ARCHIVE_NAME="${REV_NAME}.tar.xz" +        COMPRESSION_FLAGS="-cJvf"          mkdir "$REV_NAME"          cp build/src/citra/citra "$REV_NAME" @@ -13,6 +14,7 @@ if [ "$TRAVIS_EVENT_TYPE" = "push" ]&&[ "$TRAVIS_BRANCH" = "master" ]; then      elif [ "$TRAVIS_OS_NAME" = "osx" ]; then          REV_NAME="citra-osx-${GITDATE}-${GITREV}"          ARCHIVE_NAME="${REV_NAME}.tar.gz" +        COMPRESSION_FLAGS="-czvf"          mkdir "$REV_NAME"          cp build/src/citra/Release/citra "$REV_NAME" @@ -120,7 +122,7 @@ EOL      cp license.txt "$REV_NAME"      cp README.md "$REV_NAME" -    tar -cavf "$ARCHIVE_NAME" "$REV_NAME" +    tar $COMPRESSION_FLAGS "$ARCHIVE_NAME" "$REV_NAME"      # move the compiled archive into the artifacts directory to be uploaded by travis releases      mv "$ARCHIVE_NAME" artifacts/  | 
