Skip to content

Commit 43c5e4a

Browse files
committed
Update shell command to find source files
1 parent 5c5c43a commit 43c5e4a

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ ifeq ($(KERNEL), Darwin)
105105
-name '*.js' \
106106
-regex "$(SOURCES_FILTER)" \
107107
-not -name 'test*.js' \
108-
-not -path './node_modules/*' \
108+
-not -path '$(NODE_MODULES)/*' \
109109
-not -path "**/$(EXAMPLES_DIR)/*" \
110110
-not -path "$(REPORTS_DIR)/*" \
111111
)
@@ -128,7 +128,7 @@ else
128128
-regextype posix-extended \
129129
-regex "$(SOURCES_FILTER)" \
130130
-not -name 'test*.js' \
131-
-not -path './node_modules/*' \
131+
-not -path '$(NODE_MODULES)/*' \
132132
-not -path "**/$(EXAMPLES_DIR)/*" \
133133
-not -path "$(REPORTS_DIR)/*" \
134134
)

0 commit comments

Comments
 (0)