blob: 2c1ac18e8974fd7c02c4cc3d7d30c3bdaa2bd6df (
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: $_DEPENDENCIES\n";
apt-get -qq update;
apt-get -qq install -y $_DEPENDENCIES;
|