vscodium/create_zip.sh

14 lines
309 B
Bash
Raw Normal View History

2018-08-13 11:14:15 -04:00
#!/bin/bash
2018-08-13 14:24:40 -04:00
if [[ "$SHOULD_BUILD" == "yes" ]]; then
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
cd VSCode-darwin
2019-04-23 20:14:24 -04:00
zip -r -X -y ../VSCodium-darwin-${LATEST_MS_TAG}.zip ./*.app
2018-08-13 14:24:40 -04:00
else
2019-12-10 10:28:28 -05:00
cd VSCode-linux-${BUILDARCH}
tar czf ../VSCodium-linux-${BUILDARCH}-${LATEST_MS_TAG}.tar.gz .
2018-08-13 14:24:40 -04:00
fi
2018-08-13 11:14:15 -04:00
2018-08-13 14:24:40 -04:00
cd ..
2019-12-10 10:28:28 -05:00
fi