From c909d5c6b8370d614b24f925cedc717c4018ced2 Mon Sep 17 00:00:00 2001 From: BeatLink Date: Wed, 17 Jul 2019 14:02:01 -0500 Subject: Move bootstrapping to the compilation stage --- browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh') diff --git a/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh b/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh index 9839601..0230e0d 100755 --- a/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh +++ b/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh @@ -2,10 +2,10 @@ printf "\n\n-------------------------------------- DEPENDENCY INSTALLATION ---------------------------------------------\n"; printf "\nInstalling dependencies\n"; -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; +apt-get update -qq && apt-get install -qqy mercurial wget; #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; # adds the new rust install to PATH # printf "\nAdding new rust install to PATH\n"; -- cgit