diff options
author | Yukai Huang | 2016-10-05 14:09:39 +0800 |
---|---|---|
committer | Yukai Huang | 2016-10-05 14:09:39 +0800 |
commit | 69c14a274df76f9cba566c67a8721e737c69c2f4 (patch) | |
tree | 422fb288778f44a65baa109d8586cbcb4a8b3e6e /bin | |
parent | 6f53d40d6afedbaa65ffbb89c60313ab807a83ce (diff) |
Do not recommend anything in setup script
Diffstat (limited to '')
-rwxr-xr-x | bin/setup | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -6,8 +6,11 @@ cd $(git rev-parse --show-toplevel) if ! type npm > /dev/null then - echo "npm is not installed, please install via nvm(recommended) or package manager" - echo "setup will not be run" + cat << EOF +npm is not installed, please install Node.js and npm. +Read more on Node.js official website: https://nodejs.org +Setup will not be run +EOF exit 0 fi |