create_zip.sh 274 B

12345678910111213
  1. #!/bin/bash
  2. if [[ "$SHOULD_BUILD" == "yes" ]]; then
  3. if [[ "$TRAVIS_OS_NAME" == "osx" ]]; then
  4. cd VSCode-darwin
  5. zip -r ../VSCode-darwin-${LATEST_MS_TAG}.zip ./*
  6. else
  7. cd VSCode-linux-x64
  8. zip -r ../VSCode-linux-x64-${LATEST_MS_TAG}.zip ./*
  9. fi
  10. cd ..
  11. fi