Skip to content

Commit 1adf448

Browse files
committed
Quote shell arguments
1 parent 3dc4f40 commit 1adf448

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

extractors/javascript/tools/pre-finalize.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,8 @@ if [ -z "${CODEQL_EXTRACTOR_CDS_SKIP_EXTRACTION:-}" ]; then
99
"${CODEQL_DIST}/codeql" database index-files \
1010
--include-extension=.cds \
1111
--language cds \
12-
--prune **/node_modules/**/* \
13-
--prune **/.eslint/**/* \
12+
--prune '**/node_modules/**/*' \
13+
--prune '**/.eslint/**/*' \
1414
--total-size-limit=10m \
1515
-- \
1616
"$CODEQL_EXTRACTOR_JAVASCRIPT_WIP_DATABASE"
@@ -20,8 +20,8 @@ fi
2020
"${CODEQL_DIST}/codeql" database index-files \
2121
--include-extension=.view.xml \
2222
--language xml \
23-
--prune **/node_modules/**/* \
24-
--prune **/.eslint/**/* \
23+
--prune '**/node_modules/**/*' \
24+
--prune '**/.eslint/**/*' \
2525
--total-size-limit=10m \
2626
-- \
2727
"$CODEQL_EXTRACTOR_JAVASCRIPT_WIP_DATABASE"

0 commit comments

Comments
 (0)