mirror of
https://github.com/github/codeql.git
synced 2025-12-27 22:26:31 +01:00
15 lines
356 B
Batchfile
15 lines
356 B
Batchfile
@echo off
|
|
|
|
type NUL && "%CODEQL_DIST%\codeql.exe" database index-files ^
|
|
--prune=**/*.testproj ^
|
|
--include-extension=.ql ^
|
|
--include-extension=.qll ^
|
|
--include-extension=.dbscheme ^
|
|
--include-extension=.yml ^
|
|
--size-limit=5m ^
|
|
--language=ql ^
|
|
--working-dir=. ^
|
|
"%CODEQL_EXTRACTOR_QL_WIP_DATABASE%"
|
|
|
|
exit /b %ERRORLEVEL%
|