Skip to content

Commit a2acf1c

Browse files
committed
need to add quotes to paths
1 parent 3e1c078 commit a2acf1c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

codecov/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -606,9 +606,9 @@ def main(*argv, **kwargs):
606606

607607
else:
608608
dont_search_here = (
609-
"-not -path ./bower_components/** "
610-
"-not -path ./node_modules/** "
611-
"-not -path ./vendor/**"
609+
"-not -path './bower_components/**' "
610+
"-not -path './node_modules/**' "
611+
"-not -path './vendor/**'"
612612
)
613613
write('==> Processing gcov (disable by -X gcov)')
614614
cmd = "find %s %s -type f -name '*.gcno' %s -exec %s -pb %s {} +" % (

0 commit comments

Comments
 (0)