aboutsummaryrefslogtreecommitdiff
path: root/binary_tarball/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'binary_tarball/scripts')
-rwxr-xr-xbinary_tarball/scripts/1_Install_Dependencies.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/binary_tarball/scripts/1_Install_Dependencies.sh b/binary_tarball/scripts/1_Install_Dependencies.sh
index a5367bb..2c1ac18 100755
--- a/binary_tarball/scripts/1_Install_Dependencies.sh
+++ b/binary_tarball/scripts/1_Install_Dependencies.sh
@@ -5,6 +5,6 @@ printf "\n\n-------------------------------------- DEPENDENCY INSTALLATION -----
_DEPENDENCIES="mercurial wget";
# Installs Dependencies
-printf "\nInstalling dependencies\n";
+printf "\nInstalling dependencies: $_DEPENDENCIES\n";
apt-get -qq update;
apt-get -qq install -y $_DEPENDENCIES;
bgstack15