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

11 lines
331 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
_DEPENDENCIES="mercurial wget";
# 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 05:33:59 +02:00
apt-get -qq install -y $_DEPENDENCIES;