make installations more quiet

This commit is contained in:
BeatLink 2019-07-17 13:59:47 -05:00
parent 37ff4de9ad
commit 4e24c1708e

View file

@ -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;