mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
23 lines
549 B
Bash
Executable File
23 lines
549 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
"${CODEQL_DIST}/codeql" database index-files \
|
|
--prune="**/*.testproj" \
|
|
--include-extension=.ql \
|
|
--include-extension=.qll \
|
|
--include-extension=.dbscheme \
|
|
--size-limit=5m \
|
|
--language=ql \
|
|
--working-dir=.\
|
|
"$CODEQL_EXTRACTOR_QL_WIP_DATABASE"
|
|
|
|
exec "${CODEQL_DIST}/codeql" database index-files \
|
|
--prune="**/*.testproj" \
|
|
--include-extension=.yml \
|
|
--include-extension=.qlref \
|
|
--size-limit=5m \
|
|
--language=yaml \
|
|
--working-dir=.\
|
|
"$CODEQL_EXTRACTOR_QL_WIP_DATABASE"
|