mirror of
https://github.com/github/codeql.git
synced 2026-01-03 01:30:19 +01:00
12 lines
265 B
Batchfile
12 lines
265 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 >"%QLTEST_LOG%"
|
|
|
|
if %ERRORLEVEL% neq 0 (
|
|
type "%QLTEST_LOG%"
|
|
exit /b 1
|
|
)
|