From 77c6be5840751a3050863f2a1256c055bd287173 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 29 May 2017 17:58:16 -0600 Subject: [PATCH] add if around install deps --- setup.bash | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/setup.bash b/setup.bash index 9f54001..be4b6ee 100644 --- a/setup.bash +++ b/setup.bash @@ -199,6 +199,14 @@ then exit 1 fi +if [ -z "$dont_install_deps" ]; then + if [ ! -e "/tmp/${INSTALL_DEPS_FILE}" ] + then + echo "Error Downloading Deps File" + exit 1 + fi +fi + ######################### # Which node.js VERSION ? # #########################