aboutsummaryrefslogtreecommitdiff
path: root/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh
diff options
context:
space:
mode:
Diffstat (limited to 'browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh')
-rwxr-xr-xbrowser/linux/binary_tarball/scripts/1_Install_Dependencies.sh16
1 files changed, 7 insertions, 9 deletions
diff --git a/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh b/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh
index 0230e0d..c241e6b 100755
--- a/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/browser/linux/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -1,12 +1,10 @@
#!/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;
+# Setup Script Variables
+_DEPENDENCIES="mercurial wget";
+
+# Installs Dependencies
+printf "\nInstalling dependencies\n";
+apt-get -qq update;
+apt-get -qqy install $_DEPENDENCIES;
bgstack15