Skip to content
This repository was archived by the owner on May 3, 2024. It is now read-only.

Commit c6e9587

Browse files
committed
Added quotes around globs.
1 parent cfc7602 commit c6e9587

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,10 @@ BIN=node_modules/.bin
22

33
test:
44
make lint
5-
$(BIN)/mocha test/specs/**.js
5+
$(BIN)/mocha 'test/specs/**/*.js'
66

77
lint:
88
$(BIN)/eslint index.js
9-
$(BIN)/eslint test/specs/
9+
$(BIN)/eslint 'test/specs/**/*.js'
1010

1111
.PHONY: test

0 commit comments

Comments
 (0)