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
|
|
|
|
|
2019-11-26 00:20:37 -05:00
|
|
|
cd ..
|
2019-04-19 09:30:10 -04:00
|
|
|
|
2019-11-26 00:20:37 -05:00
|
|
|
bash -e src/resources/linux/appimage/pkg2appimage VSCodium-AppImage-Recipe.yml
|
2019-04-19 09:30:10 -04:00
|
|
|
fi
|