7b1c9aff73
Thanks @RandyStevens 🙏 Closes #139
8 lines
164 B
Bash
8 lines
164 B
Bash
#!/bin/bash
|
|
if [[ "$SHOULD_BUILD" == "yes" ]]; then
|
|
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
|
|
cd VSCode-darwin
|
|
create-dmg VSCodium.app ..
|
|
fi
|
|
cd ..
|
|
fi
|