Skip to content

Commit f07a8be

Browse files
committed
Makefile fixes (use tape's glob)
1 parent 4f57a94 commit f07a8be

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

Makefile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22

33
# Put Node bins in path
44
export PATH := node_modules/.bin:$(PATH)
5-
6-
# Set globstar so "**" works for testing
7-
export SHELL := /bin/bash -O globstar
5+
export SHELL := /bin/bash
86

97
default: build
108

@@ -22,4 +20,4 @@ lint:
2220

2321
test:
2422
ts-node --project tsconfig.test.json \
25-
node_modules/.bin/tape src/**/*.test.* | tap-spec
23+
node_modules/.bin/tape 'src/**/*.test.*' | tap-spec

0 commit comments

Comments
 (0)