Skip to content

Commit

Permalink
Use VSCodium in name of zip/tar
Browse files Browse the repository at this point in the history
  • Loading branch information
stripedpajamas committed Jan 10, 2019
1 parent 85da65c commit cf28585
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions create_zip.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,16 @@
if [[ "$SHOULD_BUILD" == "yes" ]]; then
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
cd VSCode-darwin
zip -r -X -y ../VSCode-darwin-${LATEST_MS_TAG}.zip ./*
zip -r -X -y ../VSCodium-darwin-${LATEST_MS_TAG}.zip ./*
elif [[ "$BUILDARCH" == "ia32" ]]; then
cd VSCode-linux-ia32
tar czf ../VSCode-linux-ia32-${LATEST_MS_TAG}.tar.gz .
tar czf ../VSCodium-linux-ia32-${LATEST_MS_TAG}.tar.gz .
elif [[ "$BUILDARCH" == "arm64" ]]; then
cd VSCode-linux-arm64
tar czf ../VSCode-linux-arm64-${LATEST_MS_TAG}.tar.gz .
tar czf ../VSCodium-linux-arm64-${LATEST_MS_TAG}.tar.gz .
else
cd VSCode-linux-x64
tar czf ../VSCode-linux-x64-${LATEST_MS_TAG}.tar.gz .
tar czf ../VSCodium-linux-x64-${LATEST_MS_TAG}.tar.gz .
fi

cd ..
Expand Down

0 comments on commit cf28585

Please sign in to comment.