2018-08-13 18:14:15 +03:00
|
|
|
#!/bin/bash
|
|
|
|
|
2018-08-13 21:24:40 +03:00
|
|
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
|
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
|
|
cd VSCode-darwin
|
2019-04-24 03:14:24 +03:00
|
|
|
zip -r -X -y ../VSCodium-darwin-${LATEST_MS_TAG}.zip ./*.app
|
2018-10-10 18:20:56 +03:00
|
|
|
elif [[ "$BUILDARCH" == "arm64" ]]; then
|
|
|
|
cd VSCode-linux-arm64
|
2019-01-10 22:55:28 +03:00
|
|
|
tar czf ../VSCodium-linux-arm64-${LATEST_MS_TAG}.tar.gz .
|
2018-08-13 21:24:40 +03:00
|
|
|
else
|
|
|
|
cd VSCode-linux-x64
|
2019-01-10 22:55:28 +03:00
|
|
|
tar czf ../VSCodium-linux-x64-${LATEST_MS_TAG}.tar.gz .
|
2018-08-13 21:24:40 +03:00
|
|
|
fi
|
2018-08-13 18:14:15 +03:00
|
|
|
|
2018-08-13 21:24:40 +03:00
|
|
|
cd ..
|
|
|
|
fi
|