From 4155a7c639bd843e67aaff99110aa42aaf58f00d Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Mon, 8 May 2017 19:36:24 +0000 Subject: [PATCH] removing old crufty io.js references --- setup-min.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/setup-min.sh b/setup-min.sh index 89f691f..6880c16 100644 --- a/setup-min.sh +++ b/setup-min.sh @@ -152,7 +152,7 @@ esac # Download installers # ####################### -echo "Preparing to install io.js (and common development dependencies) for ${OS}" "${ARCH}" +echo "Preparing to install node.js (and common development dependencies) for ${OS}" "${ARCH}" INSTALL_FILE="setup-node-${SETUP_FILE}.bash" if [ ! -e "/tmp/${INSTALL_FILE}" ] @@ -176,7 +176,7 @@ then fi ######################### -# Which io.js VERSION ? # +# Which node.js VERSION ? # ######################### if [ -f "/tmp/NODEJS_VER" ]; then @@ -199,10 +199,10 @@ fi if [ -z "$NODEJS_VER" ]; then if [ -n "$(which curl)" ]; then NODEJS_VER=$(curl -fsL "$NODEJS_BASE_URL/dist/index.tab" | head -2 | tail -1 | cut -f 1) \ - || echo 'error automatically determining current io.js version' + || echo 'error automatically determining current node.js version' elif [ -n "$(which wget)" ]; then NODEJS_VER=$(wget --quiet "$NODEJS_BASE_URL/dist/index.tab" -O - | head -2 | tail -1 | cut -f 1) \ - || echo 'error automatically determining current io.js version' + || echo 'error automatically determining current node.js version' else echo "Found neither 'curl' nor 'wget'. Can't Continue." exit 1