9 lines
241 B
Bash
Executable file
9 lines
241 B
Bash
Executable file
#!/bin/bash
|
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
cd VSCode-darwin
|
|
create-dmg VSCodium.app ..
|
|
mv "../VSCodium ${LATEST_MS_TAG}.dmg" "../VSCodium.${LATEST_MS_TAG}.dmg"
|
|
fi
|
|
cd ..
|
|
fi
|