aboutsummaryrefslogtreecommitdiff
path: root/browser/linux/binary_tarball
diff options
context:
space:
mode:
authorBeatLink <beatlink@protonmail.com>2019-07-17 13:59:47 -0500
committerBeatLink <beatlink@protonmail.com>2019-07-17 13:59:47 -0500
commit4e24c1708e1d8b8dd1e51d0c1ef55806ac31955e (patch)
treeec066875d046b81eb76b3a38a1b23b30b1cca2cc /browser/linux/binary_tarball
parentMerge branch 'master' of gitlab.com:librewolf-community/librewolf (diff)
downloadlibrewolf-linux-4e24c1708e1d8b8dd1e51d0c1ef55806ac31955e.tar.gz
librewolf-linux-4e24c1708e1d8b8dd1e51d0c1ef55806ac31955e.tar.bz2
librewolf-linux-4e24c1708e1d8b8dd1e51d0c1ef55806ac31955e.zip
make installations more quiet
Diffstat (limited to 'browser/linux/binary_tarball')
-rwxr-xr-xbrowser/linux/binary_tarball/scripts/1_Install_Dependencies.sh2
1 files changed, 1 insertions, 1 deletions
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;
bgstack15