mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-11-30 09:57:36 +03:00
11 lines
311 B
Bash
Executable File
11 lines
311 B
Bash
Executable File
#!/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
|