From 9e0779189864b95e5c25f31b7366ae9b12e34057 Mon Sep 17 00:00:00 2001 From: BeatLink Date: Fri, 16 Aug 2019 22:33:59 -0500 Subject: [PATCH] fix script --- binary_tarball/scripts/1_Install_Dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh index c241e6b..a5367bb 100755 --- a/binary_tarball/scripts/1_Install_Dependencies.sh +++ b/binary_tarball/scripts/1_Install_Dependencies.sh @@ -7,4 +7,4 @@ _DEPENDENCIES="mercurial wget"; # Installs Dependencies printf "\nInstalling dependencies\n"; apt-get -qq update; -apt-get -qqy install $_DEPENDENCIES; +apt-get -qq install -y $_DEPENDENCIES;