aboutsummaryrefslogtreecommitdiff
path: root/binary_tarball/scripts/1_Install_Dependencies.sh
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-08-17 15:34:48 -0500
committerBeatLink <beatlink@protonmail.com>2019-08-17 15:34:48 -0500
commit41206e66e04b4a3e9d6caf79302363fad765fba0 (patch)
tree7a0d92fde2a85191f9ff51afbe9ccd8bcdddaf4f /binary_tarball/scripts/1_Install_Dependencies.sh
parentfix build dependency (diff)
downloadlibrewolf-linux-41206e66e04b4a3e9d6caf79302363fad765fba0.tar.gz
librewolf-linux-41206e66e04b4a3e9d6caf79302363fad765fba0.tar.bz2
librewolf-linux-41206e66e04b4a3e9d6caf79302363fad765fba0.zip
fix script
Diffstat (limited to 'binary_tarball/scripts/1_Install_Dependencies.sh')
-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 cf7d0f7..f6c16ac 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -7,4 +7,4 @@ _DEPENDENCIES="mercurial wget git";
# Installs Dependencies
printf "\nInstalling dependencies: $_DEPENDENCIES\n";
apt-get -qq update;
-apt-get -qq install -y $_DEPENDENCIES;
+apt-get -y -qq install $_DEPENDENCIES;
bgstack15