vscodium/create_zip.sh

13 lines
276 B
Bash
Raw Normal View History

2018-08-13 15:14:15 +00:00
#!/bin/bash
2018-08-13 18:24:40 +00:00
if [[ "$SHOULD_BUILD" == "yes" ]]; then
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
cd VSCode-darwin
zip -r ../VSCode-darwin-${LATEST_MS_TAG}.zip ./*
else
cd VSCode-linux-x64
tar czf ../VSCode-linux-x64-${LATEST_MS_TAG}.tar.gz .
2018-08-13 18:24:40 +00:00
fi
2018-08-13 15:14:15 +00:00
2018-08-13 18:24:40 +00:00
cd ..
fi