vscodium/create_dmg.sh

12 lines
253 B
Bash
Raw Normal View History

#!/bin/bash
set -x
if [[ "$SHOULD_BUILD" == "yes" ]]; then
if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
cd VSCode-darwin
2020-09-15 06:00:16 +03:00
npx create-dmg VSCodium.app ..
2020-04-19 22:50:45 +03:00
mv "../VSCodium ${LATEST_MS_TAG}.dmg" "../VSCodium.${LATEST_MS_TAG}.dmg"
fi
cd ..
fi