Files
vscodium/create_zip.sh
Peter Squicciarini 83847916ca Testing build
2018-08-13 11:14:15 -04:00

11 lines
210 B
Bash
Executable File

#!/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 ..