aboutsummaryrefslogtreecommitdiff
path: root/browser/linux
diff options
context:
space:
mode:
Diffstat (limited to 'browser/linux')
-rwxr-xr-xbrowser/linux/appimage/build_appimage.sh11
1 files changed, 6 insertions, 5 deletions
diff --git a/browser/linux/appimage/build_appimage.sh b/browser/linux/appimage/build_appimage.sh
index 4ca7bf0..69453a3 100755
--- a/browser/linux/appimage/build_appimage.sh
+++ b/browser/linux/appimage/build_appimage.sh
@@ -7,12 +7,13 @@ set -e;
# Sets up script variables
BINARY_TARBALL=$1
APPIMAGE_FILE=$2
-_BINARY_TARBALL_EXTRACTED_FOLDER=./librewolf;
-_BUILD_APPIMAGE_FILE=./LibreWolf*.AppImage;
+SCRIPT_FOLDER=$(realpath $(dirname $0));
+_BINARY_TARBALL_EXTRACTED_FOLDER=$SCRIPT_FOLDER/librewolf;
+_BUILD_APPIMAGE_FILE=$SCRIPT_FOLDER/LibreWolf*.AppImage;
_APPIMAGETOOL_DOWNLOAD_URL=https://github.com/AppImage/AppImageKit/releases/latest/download/appimagetool-x86_64.AppImage;
-_APPIMAGETOOL_EXTRACTED_FOLDER=./squashfs-root;
-_APPIMAGETOOL_FILE=./appimagetool;
-_APPIMAGE_CONTENT_FOLDER=./content
+_APPIMAGETOOL_EXTRACTED_FOLDER=$SCRIPT_FOLDER/squashfs-root;
+_APPIMAGETOOL_FILE=$SCRIPT_FOLDER/appimagetool;
+_APPIMAGE_CONTENT_FOLDER=$SCRIPT_FOLDER/content
# Extracts the binary tarball
printf "\nExtracting librewolf binary tarball\n";
bgstack15