aboutsummaryrefslogtreecommitdiff
path: root/browser
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-06-23 14:05:21 -0500
committerBeatLink <beatlink@protonmail.com>2019-06-23 14:05:21 -0500
commit47f54dc70dbc25a639e86d7f436a595a713e6699 (patch)
tree015520148d489eae94abdaeddfb66bf6e40fbf07 /browser
parentMerge branch 'master' of gitlab.com:librewolf-community/librewolf (diff)
downloadlibrewolf-linux-47f54dc70dbc25a639e86d7f436a595a713e6699.tar.gz
librewolf-linux-47f54dc70dbc25a639e86d7f436a595a713e6699.tar.bz2
librewolf-linux-47f54dc70dbc25a639e86d7f436a595a713e6699.zip
fix appimage build
Diffstat (limited to 'browser')
-rwxr-xr-xbrowser/build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/browser/build.sh b/browser/build.sh
index 0286baa..6df8b71 100755
--- a/browser/build.sh
+++ b/browser/build.sh
@@ -22,7 +22,7 @@ printf "APPIMAGE_RESOURCE_FOLDER: $APPIMAGE_RESOURCE_FOLDER\n";
# Installs some needed dependencies
printf "\nInstalling script dependencies\n";
apt update;
-apt install sudo python python3 inkscape icnsutils wget fuse libfuse-dev -y;
+apt install sudo python python3 inkscape icnsutils wget fuse libfuse-dev kmod -y;
# Loads the FUSE kernel module
sudo modprobe fuse;
bgstack15