aboutsummaryrefslogtreecommitdiff
path: root/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh
blob: 0230e0d88d3ed0c7f8e88dc5473db40248a990cd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
#!/bin/sh

printf "\n\n-------------------------------------- DEPENDENCY INSTALLATION ---------------------------------------------\n";
printf "\nInstalling dependencies\n";
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";
#. $HOME/.cargo/env;
bgstack15