mirror of
https://github.com/VSCodium/vscodium.git
synced 2025-01-07 18:00:07 +03:00
16 lines
421 B
Bash
Executable File
16 lines
421 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
cd VSCode-darwin
|
|
zip -r -X -y ../VSCodium-darwin-${LATEST_MS_TAG}.zip ./*.app
|
|
elif [[ "$BUILDARCH" == "arm64" ]]; then
|
|
cd VSCode-linux-arm64
|
|
tar czf ../VSCodium-linux-arm64-${LATEST_MS_TAG}.tar.gz .
|
|
else
|
|
cd VSCode-linux-x64
|
|
tar czf ../VSCodium-linux-x64-${LATEST_MS_TAG}.tar.gz .
|
|
fi
|
|
|
|
cd ..
|
|
fi |