mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-12-12 06:16:37 +03:00
13 lines
276 B
Bash
Executable File
13 lines
276 B
Bash
Executable File
#!/bin/bash
|
|
|
|
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 .
|
|
fi
|
|
|
|
cd ..
|
|
fi |