Feature/DMG (#162)

Thanks @RandyStevens 🙏 

Closes #139
This commit is contained in:
Randal Stevens
2019-05-17 09:17:54 -07:00
committed by Peter Squicciarini
parent a5b2066f76
commit 7b1c9aff73
4 changed files with 12 additions and 1 deletions

8
create_dmg.sh Normal file
View File

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