mirror of
https://github.com/github/codeql.git
synced 2026-05-14 19:29:28 +02:00
15 lines
357 B
Batchfile
15 lines
357 B
Batchfile
@echo off
|
|
|
|
type NUL && "%CODEQL_DIST%\codeql.exe" database index-files ^
|
|
--prune=**/*.testproj ^
|
|
--include-extension=.swift ^
|
|
--include-extension=.swiftinterface ^
|
|
--size-limit=5m ^
|
|
--language=unified ^
|
|
--working-dir=. ^
|
|
"%CODEQL_EXTRACTOR_UNIFIED_WIP_DATABASE%"
|
|
|
|
IF %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL%
|
|
|
|
exit /b %ERRORLEVEL%
|