blob: a5367bb74aca870852defd14ae6c02a3809f6262 (
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 -qq install -y $_DEPENDENCIES;
|