From 4e24c1708e1d8b8dd1e51d0c1ef55806ac31955e Mon Sep 17 00:00:00 2001 From: BeatLink Date: Wed, 17 Jul 2019 13:59:47 -0500 Subject: [PATCH] make installations more quiet --- browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh b/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh index 9519b22..9839601 100755 --- a/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh +++ b/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh @@ -2,7 +2,7 @@ printf "\n\n-------------------------------------- DEPENDENCY INSTALLATION ---------------------------------------------\n"; printf "\nInstalling dependencies\n"; -apt update && apt install -y python python3 wget; +apt-get update -qq && apt-get install -qqy python python3 wget; wget https://hg.mozilla.org/mozilla-central/raw-file/default/python/mozboot/bin/bootstrap.py; python ./bootstrap.py --application-choice=browser --no-interactive || true rm -f ./bootstrap.py;