mirror of
https://github.com/github/codeql.git
synced 2026-02-07 18:51:06 +01:00
Currently the the YAML "parser" fails for some legacy files, but the actual files appear to be parsed correctly.
13 lines
305 B
Batchfile
13 lines
305 B
Batchfile
@echo off
|
|
|
|
type NUL && "%CODEQL_DIST%\codeql.exe" database index-files ^
|
|
--include-extension=.ql ^
|
|
--include-extension=.qll ^
|
|
--include-extension=.dbscheme ^
|
|
--include=**/qlpack.yml ^
|
|
--size-limit=5m ^
|
|
--language=ql ^
|
|
"%CODEQL_EXTRACTOR_QL_WIP_DATABASE%"
|
|
|
|
exit /b %ERRORLEVEL%
|