vscodium/create_zip.sh

11 lines
210 B
Bash
Raw Normal View History

2018-08-13 11:14:15 -04:00
#!/bin/bash
if [[ "$TRAVIS_OS_NAME" === "osx" ]]; then
cd VSCode-darwin
zip -r ../VSCode-darwin-${TRAVIS_TAG}.zip ./*
else
cd VSCode-linux-x64
zip -r ../VSCode-linux-x64-${TRAVIS_TAG}.zip ./*
fi
cd ..