vscodium/create_dmg.sh
2019-05-18 19:00:21 -07:00

9 lines
164 B
Bash
Executable file

#!/bin/bash
if [[ "$SHOULD_BUILD" == "yes" ]]; then
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
cd VSCode-darwin
create-dmg VSCodium.app ..
fi
cd ..
fi