Files
vscodium/create_dmg.sh
2020-09-15 09:53:57 -07:00

12 lines
249 B
Bash
Executable File

#!/bin/bash
set -x
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