vscodium/create_appimage.sh

11 lines
311 B
Bash
Raw Normal View History

2019-04-19 09:30:10 -04:00
#!/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