fix appimage build
This commit is contained in:
parent
6f6dcbdd35
commit
06537b575d
1 changed files with 6 additions and 4 deletions
|
|
@ -126,12 +126,13 @@ cp -vrT $APPIMAGE_RESOURCE_FOLDER ./librewolf;
|
|||
|
||||
# Downloads appimage tool
|
||||
printf "\nDownloading AppImage Tool\n";
|
||||
wget https://github.com/AppImage/AppImageKit/releases/latest/download/appimagetool-x86_64.AppImage;
|
||||
chmod +x ./appimagetool-x86_64.AppImage;
|
||||
wget https://github.com/AppImage/AppImageKit/releases/latest/download/appimagetool-x86_64.AppImage -O appimagetool;
|
||||
chmod +x ./appimagetool;
|
||||
./appimagetool --appimage-extract;
|
||||
|
||||
# Generate AppImage
|
||||
printf "\nGenerating AppImage\n";
|
||||
./appimagetool-x86_64.AppImage ./librewolf;
|
||||
./squashfs-root/AppRun ./librewolf;
|
||||
chmod +x ./LibreWolf*.AppImage;
|
||||
|
||||
# Move AppImage to build_output folder
|
||||
|
|
@ -150,7 +151,8 @@ rm -rf ./librewolf;
|
|||
|
||||
# Delete the appimage tool
|
||||
printf "\nRemoving AppImage tool\n";
|
||||
rm -f ./appimagetool-x86_64.AppImage
|
||||
rm -f ./appimagetool;
|
||||
rm -rf ./squashfs-root;
|
||||
|
||||
# Delete the bootstrapper script
|
||||
printf "\nRemoving bootstrapper.py\n";
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue