Skip to content

Commit

Permalink
fix(app generator): correct install suggestion given when grunt comma…
Browse files Browse the repository at this point in the history
…nd does not appear to exist
  • Loading branch information
cueedee committed May 7, 2015
1 parent f49187f commit 79fc707
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions generators/app/templates/@package.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
"name": "<%= packageName %>",
"private": true,
"scripts": {
"prepublish": "command -v grunt > /dev/null || { echo >&2 'It appears that \"grunt\" is not installed. Consider running \"npm install grunt --save-dev\" first.'; exit ; } && grunt",
"test": "command -v grunt > /dev/null || { echo >&2 'It appears that \"grunt\" is not installed. Consider running \"npm install grunt --save-dev\" first.'; exit ; } && grunt test"
"prepublish": "command -v grunt > /dev/null || { echo >&2 'It appears that \"grunt\" is not installed. Consider running \"[sudo ]npm install -g grunt-cli\" first.'; exit ; } && grunt",
"test": "command -v grunt > /dev/null || { echo >&2 'It appears that \"grunt\" is not installed. Consider running \"[sudo ]npm install -g grunt-cli\" first.'; exit ; } && grunt test"
},
"version": "0.1.0"
}

0 comments on commit 79fc707

Please sign in to comment.