vscodium/create_appimage.sh

10 lines
231 B
Bash
Raw Normal View History

2019-04-19 16:30:10 +03:00
#!/bin/bash
if [[ "$VSCODE_ARCH" == "x64" ]]; then
2019-04-19 16:30:10 +03:00
# install a dep needed for this process
sudo apt-get install desktop-file-utils
2019-11-26 08:20:37 +03:00
cd ..
2019-04-19 16:30:10 +03:00
2019-11-26 08:20:37 +03:00
bash -e src/resources/linux/appimage/pkg2appimage VSCodium-AppImage-Recipe.yml
2019-04-19 16:30:10 +03:00
fi