mirror of
https://github.com/VSCodium/vscodium.git
synced 2024-11-27 12:53:13 +03:00
10 lines
229 B
Bash
Executable File
10 lines
229 B
Bash
Executable File
#!/bin/bash
|
|
if [[ "$BUILDARCH" == "x64" ]]; then
|
|
# install a dep needed for this process
|
|
sudo apt-get install desktop-file-utils
|
|
|
|
cd ..
|
|
|
|
bash -e src/resources/linux/appimage/pkg2appimage VSCodium-AppImage-Recipe.yml
|
|
fi
|