From c09719e26a20b4dea20edd4300aae87079450030 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Wed, 22 Apr 2015 09:48:29 -0600 Subject: [PATCH] fix error message --- setup.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.bash b/setup.bash index a29af98..2f5a891 100644 --- a/setup.bash +++ b/setup.bash @@ -214,10 +214,10 @@ fi if [ -z "$IOJS_VER" ]; then if [ -n "$(which curl)" ]; then IOJS_VER="$(curl -fsSL https://iojs.org/dist/index.tab | head -2 | tail -1 | cut -f 1)" \ - || echo 'error downloading os setup script' + || echo 'error automatically determining current io.js version' elif [ -n "$(which wget)" ]; then IOJS_VER="wget --quiet https://iojs.org/dist/index.tab | head -2 | tail -1 | cut -f 1)" \ - || echo 'error downloading os setup script' + || echo 'error automatically determining current io.js version' else echo "Found neither 'curl' nor 'wget'. Can't Continue." exit 1