mirror of
https://github.com/github/codeql.git
synced 2025-12-16 16:53:25 +01:00
12 lines
300 B
Batchfile
12 lines
300 B
Batchfile
@echo off
|
|
|
|
set "RUST_BACKTRACE=full"
|
|
set "QLTEST_LOG=%CODEQL_EXTRACTOR_RUST_LOG_DIR%/qltest.log"
|
|
|
|
type NUL && "%CODEQL_EXTRACTOR_RUST_ROOT%/tools/%CODEQL_PLATFORM%/extractor" --qltest --logging-verbosity=progress+ >"%QLTEST_LOG%" 2>&1
|
|
|
|
if %ERRORLEVEL% neq 0 (
|
|
type "%QLTEST_LOG%"
|
|
exit /b 1
|
|
)
|