Skip to content

Commit

Permalink
Make make test work on Windows
Browse files Browse the repository at this point in the history
Quoting the filename avoids the following error on Windows:

> '.' is not recognized as an internal or external command,
> operable
program or batch file.
> make: *** [test] Error 1
  • Loading branch information
David Murdoch committed Dec 5, 2012
1 parent 8dfa363 commit 3e511b5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ querystring.js: lib/head.js lib/querystring.js lib/tail.js
cat $^ > $@ cat $^ > $@


test: test:
@./node_modules/.bin/mocha \ @"./node_modules/.bin/mocha" \
--ui bdd --ui bdd

.PHONY: test .PHONY: test

0 comments on commit 3e511b5

Please sign in to comment.