From 800285cc3cfc3201e52cae598890797c4d005384 Mon Sep 17 00:00:00 2001 From: BeatLink Date: Sat, 17 Aug 2019 18:33:13 -0500 Subject: fix build --- binary_tarball/scripts/1_Install_Dependencies.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'binary_tarball/scripts/1_Install_Dependencies.sh') diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh index f6c16ac..49f0613 100755 --- a/binary_tarball/scripts/1_Install_Dependencies.sh +++ b/binary_tarball/scripts/1_Install_Dependencies.sh @@ -6,5 +6,5 @@ _DEPENDENCIES="mercurial wget git"; # Installs Dependencies printf "\nInstalling dependencies: $_DEPENDENCIES\n"; -apt-get -qq update; -apt-get -y -qq install $_DEPENDENCIES; +DEBIAN_FRONTEND=noninteractive apt-get -qq update; +DEBIAN_FRONTEND=noninteractive apt-get -y -qq install $_DEPENDENCIES; -- cgit