mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-11-23 16:37:26 +03:00
12 lines
253 B
Bash
Executable File
12 lines
253 B
Bash
Executable File
#!/bin/bash
|
|
set -x
|
|
|
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
cd VSCode-darwin
|
|
npx create-dmg VSCodium.app ..
|
|
mv "../VSCodium ${LATEST_MS_TAG}.dmg" "../VSCodium.${LATEST_MS_TAG}.dmg"
|
|
fi
|
|
cd ..
|
|
fi
|