diff options
author | ohfp <1813007-ohfp@users.noreply.gitlab.com> | 2020-03-31 17:14:12 +0200 |
---|---|---|
committer | ohfp <1813007-ohfp@users.noreply.gitlab.com> | 2020-03-31 17:14:12 +0200 |
commit | aa047fed9f311e1a94f3ed460fdd919b8206a2a8 (patch) | |
tree | efaa17e3441d6a918897233f49f4d87dff52112c | |
parent | fix variable typo in appimage script (diff) | |
download | librewolf-linux-aa047fed9f311e1a94f3ed460fdd919b8206a2a8.tar.gz librewolf-linux-aa047fed9f311e1a94f3ed460fdd919b8206a2a8.tar.bz2 librewolf-linux-aa047fed9f311e1a94f3ed460fdd919b8206a2a8.zip |
add dependency to get libdbus-so
-rwxr-xr-x | appimage/build_appimage.sh | 2 |
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}" |