aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-08-16 19:35:52 -0500
committerBeatLink <beatlink@protonmail.com>2019-08-16 19:35:52 -0500
commit6e6ec24227ff4404363551bd75ff7b0d9818cb60 (patch)
tree993acff0e2dc495a9b2b8844cc0fc2ce000cf156
parentfix flatpak and appimage build (diff)
downloadlibrewolf-linux-6e6ec24227ff4404363551bd75ff7b0d9818cb60.tar.gz
librewolf-linux-6e6ec24227ff4404363551bd75ff7b0d9818cb60.tar.bz2
librewolf-linux-6e6ec24227ff4404363551bd75ff7b0d9818cb60.zip
fix appimage
-rwxr-xr-xbrowser/linux/appimage/build_appimage.sh11
1 files changed, 4 insertions, 7 deletions
diff --git a/browser/linux/appimage/build_appimage.sh b/browser/linux/appimage/build_appimage.sh
index f84d43b..c3e53d0 100755
--- a/browser/linux/appimage/build_appimage.sh
+++ b/browser/linux/appimage/build_appimage.sh
@@ -29,19 +29,16 @@ printf "\nDownloading AppImage Tool\n";
apt -qq update && apt -qqy install wget;
wget $_APPIMAGETOOL_DOWNLOAD_URL -O $_APPIMAGETOOL_FILE;
chmod +x $_APPIMAGETOOL_FILE;
-#$_APPIMAGETOOL_FILE --appimage-mount $_APPIMAGETOOL_EXTRACTED_FOLDER;
-#rm -f $_APPIMAGETOOL_FILE;
+$_APPIMAGETOOL_FILE --appimage-mount $_APPIMAGETOOL_EXTRACTED_FOLDER;
+rm -f $_APPIMAGETOOL_FILE;
# Generate AppImage
printf "\nGenerating AppImage\n";
-#$_APPIMAGETOOL_EXTRACTED_FOLDER/AppRun $_BINARY_TARBALL_EXTRACTED_FOLDER;
-ARCH=x86_64 $_APPIMAGETOOL_FILE $_BINARY_TARBALL_EXTRACTED_FOLDER;
+ARCH=x86_64 $_APPIMAGETOOL_EXTRACTED_FOLDER/AppRun $_BINARY_TARBALL_EXTRACTED_FOLDER;
rm -rf $_BINARY_TARBALL_EXTRACTED_FOLDER;
-#rm -rf $_APPIMAGETOOL_EXTRACTED_FOLDER;
+rm -rf $_APPIMAGETOOL_EXTRACTED_FOLDER;
chmod +x $_BUILD_APPIMAGE_FILE;
# Move AppImage to specified location
printf "\nMoving AppImage to specified location\n";
mv $_BUILD_APPIMAGE_FILE $APPIMAGE_FILE;
-
-
bgstack15