From 3344338c2e10b967db07a0e8cd8a7eab0a32fa5c Mon Sep 17 00:00:00 2001 From: Pomax Date: Tue, 9 Sep 2014 09:43:20 -0700 Subject: [PATCH] grunt fix for running on windows --- gruntfile.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gruntfile.js b/gruntfile.js index 316e21b..0f061e2 100644 --- a/gruntfile.js +++ b/gruntfile.js @@ -88,7 +88,7 @@ module.exports = function(grunt) { mocha: { // Run all tests (e.g., tests require()'ed in tests/index.js) and also tests/bugs/issue225.js // separately, since it can't be included in a browserify build. - command: './node_modules/.bin/mocha --reporter list tests/index.js && ./node_modules/.bin/mocha --reporter list tests/bugs/issue225.js' + command: '"./node_modules/.bin/mocha" --reporter list tests/index.js && "./node_modules/.bin/mocha" --reporter list tests/bugs/issue225.js' } },