From cf28585423c2c73a596237e0356d8a5b468faf51 Mon Sep 17 00:00:00 2001 From: Peter Squicciarini Date: Thu, 10 Jan 2019 14:55:28 -0500 Subject: [PATCH] Use VSCodium in name of zip/tar --- create_zip.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/create_zip.sh b/create_zip.sh index 5f84f16..1abb6f3 100755 --- a/create_zip.sh +++ b/create_zip.sh @@ -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 ..