Merge pull request #66 from Candunc/master
Fixed an odd issue where installer prompted to install node
This commit is contained in:
commit
5bf9b23770
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue