Fixed an odd issue where installer prompted to install node, even though it is installed.

This commit is contained in:
Duncan Bristow 2015-12-06 12:32:19 -07:00
parent b8c0eb4be8
commit fce376923a
1 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
#!/bin/bash
# As there is no Linux support, this script assumes OS X as the host system.
command -v node > /dev/null || echo 'Node not found, please download it!' && open 'https://nodejs.org/en/' && sleep 5 && exit
command -v node > /dev/null || (echo 'Node not found, please download it!' && open 'https://nodejs.org/en/' && sleep 5 && exit)
node index.js
exit
exit