create_appimage.sh 229 B

123456789
  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. cd ..
  6. bash -e src/resources/linux/appimage/pkg2appimage VSCodium-AppImage-Recipe.yml
  7. fi