mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-11-30 09:57:36 +03:00
9 lines
164 B
Bash
Executable File
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
|