blob: c241e6b9374912d2c50cc1641df6238d55789176 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/bin/sh
printf "\n\n-------------------------------------- DEPENDENCY INSTALLATION ---------------------------------------------\n";
# Setup Script Variables
_DEPENDENCIES="mercurial wget";
# Installs Dependencies
printf "\nInstalling dependencies\n";
apt-get -qq update;
apt-get -qqy install $_DEPENDENCIES;
|