create_appimage.sh 311 B

12345678910
  1. #!/bin/bash
  2. if [[ "$BUILDARCH" == "x64" ]]; then
  3. # install a dep needed for this process
  4. sudo apt-get install desktop-file-utils
  5. # download pkg2appimage from github
  6. curl -LO "https://github.com/AppImage/pkg2appimage/raw/master/pkg2appimage"
  7. bash -e pkg2appimage ../VSCodium-AppImage-Recipe.yml
  8. fi