aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-31 17:14:12 +0200
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-31 17:14:12 +0200
commitaa047fed9f311e1a94f3ed460fdd919b8206a2a8 (patch)
treeefaa17e3441d6a918897233f49f4d87dff52112c
parentfix variable typo in appimage script (diff)
downloadlibrewolf-linux-aa047fed9f311e1a94f3ed460fdd919b8206a2a8.tar.gz
librewolf-linux-aa047fed9f311e1a94f3ed460fdd919b8206a2a8.tar.bz2
librewolf-linux-aa047fed9f311e1a94f3ed460fdd919b8206a2a8.zip
add dependency to get libdbus-so
-rwxr-xr-xappimage/build_appimage.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/appimage/build_appimage.sh b/appimage/build_appimage.sh
index 63aa866..e7f48e7 100755
--- a/appimage/build_appimage.sh
+++ b/appimage/build_appimage.sh
@@ -16,7 +16,7 @@ _APPIMAGETOOL_FILE=$_SCRIPT_FOLDER/appimagetool;
_APPIMAGE_CONTENT_FOLDER=$_SCRIPT_FOLDER/content
# Installs needed dependencies
-apt-get update && apt-get -y install file wget bzip2
+apt-get update && apt-get -y install file wget bzip2 libdbus-glib-1-2
if [[ ! -z "${TARBALL_URL}" ]];then
wget "${TARBALL_URL}"
bgstack15