create_dmg.sh 253 B

1234567891011
  1. #!/bin/bash
  2. set -x
  3. if [[ "$SHOULD_BUILD" == "yes" ]]; then
  4. if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
  5. cd VSCode-darwin
  6. npx create-dmg VSCodium.app ..
  7. mv "../VSCodium ${LATEST_MS_TAG}.dmg" "../VSCodium.${LATEST_MS_TAG}.dmg"
  8. fi
  9. cd ..
  10. fi