diff options
author | BeatLink <beatlink@protonmail.com> | 2019-07-17 13:59:47 -0500 |
---|---|---|
committer | BeatLink <beatlink@protonmail.com> | 2019-07-17 13:59:47 -0500 |
commit | 4e24c1708e1d8b8dd1e51d0c1ef55806ac31955e (patch) | |
tree | ec066875d046b81eb76b3a38a1b23b30b1cca2cc /browser | |
parent | Merge branch 'master' of gitlab.com:librewolf-community/librewolf (diff) | |
download | librewolf-linux-4e24c1708e1d8b8dd1e51d0c1ef55806ac31955e.tar.gz librewolf-linux-4e24c1708e1d8b8dd1e51d0c1ef55806ac31955e.tar.bz2 librewolf-linux-4e24c1708e1d8b8dd1e51d0c1ef55806ac31955e.zip |
make installations more quiet
Diffstat (limited to 'browser')
-rwxr-xr-x | browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh | 2 |
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; |