Testing build

This commit is contained in:
Peter Squicciarini
2018-08-13 11:14:15 -04:00
commit 83847916ca
6 changed files with 94 additions and 0 deletions

11
create_zip.sh Executable file
View File

@@ -0,0 +1,11 @@
#!/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 ..