aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-28 23:59:24 +0100
committerohfp <1813007-ohfp@users.noreply.gitlab.com>2020-03-28 23:59:24 +0100
commitebe2615c992fe447589dd5f7af97e72314ea8827 (patch)
tree5daad5753899624fdff42ac553b368016cc859c8
parenttypos and fix pipeline variable name (diff)
downloadlibrewolf-linux-ebe2615c992fe447589dd5f7af97e72314ea8827.tar.gz
librewolf-linux-ebe2615c992fe447589dd5f7af97e72314ea8827.tar.bz2
librewolf-linux-ebe2615c992fe447589dd5f7af97e72314ea8827.zip
missing dependency
-rwxr-xr-xbinary_tarball/scripts/1_Install_Dependencies.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh
index da2efb9..3b561f4 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -3,7 +3,7 @@ printf "\n\n-------------------------------------- DEPENDENCY INSTALLATION -----
# Setup Script Variables
# _DEPENDENCIES="mercurial wget git flatpak flatpak-builder";
-_DEPENDENCIES="wget git xvfb";
+_DEPENDENCIES="wget git xvfb xz";
# Installs Dependencies
printf "\nInstalling dependencies: $_DEPENDENCIES\n";
bgstack15