Skip to content
This repository has been archived by the owner on Feb 8, 2018. It is now read-only.

Commit

Permalink
Fix #2971 finally!
Browse files Browse the repository at this point in the history
The accepted answer on
https://stackoverflow.com/questions/14695845/why-does-grunt-fail
meant to install Grunt globally, and it didn't specify that
`npm run-script grunt` is not automagical, but uses `scripts`
section of Gruntfile.js, which is absent in our project.
  • Loading branch information
techtonik committed Dec 5, 2014
1 parent cef7235 commit 1cc5ae1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Expand Up @@ -67,7 +67,7 @@ node_modules: package.json
@if [ -d node_modules ]; then touch node_modules; fi

jstest: node_modules
npm run-script grunt-cli test
node_modules/grunt-cli/bin/grunt test

transifexrc:
@echo '[https://www.transifex.com]' >.transifexrc
Expand Down

0 comments on commit 1cc5ae1

Please sign in to comment.