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

11 lines
315 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
printf "\nInstalling dependencies\n";
apt-get -qq update;
apt-get -qqy install $_DEPENDENCIES;