AppImage support (#108)

This commit is contained in:
Peter Squicciarini
2019-04-19 06:30:10 -07:00
committed by GitHub
parent f6363a3665
commit 39d4b9c134
4 changed files with 48 additions and 1 deletions

10
create_appimage.sh Executable file
View File

@@ -0,0 +1,10 @@
#!/bin/bash
if [[ "$BUILDARCH" == "x64" ]]; then
# install a dep needed for this process
sudo apt-get install desktop-file-utils
# download pkg2appimage from github
curl -LO "https://github.com/AppImage/pkg2appimage/raw/master/pkg2appimage"
bash -e pkg2appimage ../VSCodium-AppImage-Recipe.yml
fi