mirror of
https://github.com/github/codeql.git
synced 2026-02-08 19:21:07 +01:00
12 lines
236 B
Bash
Executable File
12 lines
236 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
exec "${CODEQL_DIST}/codeql" database index-files \
|
|
--include-extension=.ql \
|
|
--include-extension=.qll \
|
|
--size-limit=5m \
|
|
--language=ql \
|
|
--working-dir=.\
|
|
"$CODEQL_EXTRACTOR_QL_WIP_DATABASE"
|