Skip to content

Commit c7547e1

Browse files
committed
Make the Makefile more portable
For some reason the bash magic doesn't work properly on all platforms.
1 parent e62b900 commit c7547e1

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

Makefile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
test:
2-
@find test/{simple,system}/test-*.js | xargs -n 1 -t node
2+
@find test/simple/test-*.js | xargs -n 1 -t node
3+
@find test/system/test-*.js | xargs -n 1 -t node
34
test-all: test
45
@find test/system/slow/test-*.js | xargs -n 1 -t node
56
benchmark-node-mysql:

0 commit comments

Comments
 (0)