foxgirl-linux/binary_tarball/scripts/1_Install_Dependencies.sh

11 lines
335 B
Bash
Raw Normal View History

#!/bin/sh
printf "\n\n-------------------------------------- DEPENDENCY INSTALLATION ---------------------------------------------\n";
2019-07-21 07:30:19 +02:00
# Setup Script Variables
2019-08-17 12:15:51 +02:00
_DEPENDENCIES="mercurial wget git";
2019-07-21 07:30:19 +02:00
# Installs Dependencies
2019-08-17 05:34:30 +02:00
printf "\nInstalling dependencies: $_DEPENDENCIES\n";
2019-07-21 07:30:19 +02:00
apt-get -qq update;
2019-08-17 22:34:48 +02:00
apt-get -y -qq install $_DEPENDENCIES;