add if around install deps

This commit is contained in:
AJ ONeal 2017-05-29 17:58:16 -06:00
parent a05cf035b3
commit 77c6be5840
1 changed files with 8 additions and 0 deletions

View File

@ -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 ? #
#########################