diff --git a/setup-ubuntu.bash b/setup-ubuntu.bash index 633e36b..70c25f7 100644 --- a/setup-ubuntu.bash +++ b/setup-ubuntu.bash @@ -24,12 +24,21 @@ then fi # iojs -if [ -n "$(which iojs | grep iojs 2>/dev/null)" ]; then +if [ -n "$(which node | grep node 2>/dev/null)" ]; then IOJS_VER="" - + + if [ "$(node -v 2>/dev/null)" != "$(iojs -v 2>/dev/null)" ]; then + echo "You have node.js installed. Backing up $(which node) as $(which node).joyent" + echo "(you can move it back after the install if you want separate node.js and io.js installations)" + echo "" + echo sudo mv "$(which node)" "$(which node).joyent" + sudo mv "$(which node)" "$(which node).joyent" + fi + if [ "${IOJS_VER}" == "$(iojs -v 2>/dev/null)" ]; then echo iojs ${IOJS_VER} already installed else + clear echo "" echo "HEY, LISTEN:" echo "io.js is already installed as iojs $(iojs -v | grep v)"