Skip to content

Commit 15db6df

Browse files
authored
Merge pull request github#6431 from hvitved/csharp/silence-xml-extraction
C#: Silence XML extraction commands
2 parents 562ba49 + 5b5ed97 commit 15db6df

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

csharp/tools/pre-finalize.cmd

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@ type NUL && "%CODEQL_DIST%\codeql" database index-files ^
88
--size-limit 10m ^
99
--language xml ^
1010
-- ^
11-
"%CODEQL_EXTRACTOR_CSHARP_WIP_DATABASE%"
11+
"%CODEQL_EXTRACTOR_CSHARP_WIP_DATABASE%" ^
12+
>nul 2>&1
1213
IF %ERRORLEVEL% NEQ 0 exit /b %ERRORLEVEL%
1314

1415
type NUL && "%CODEQL_JAVA_HOME%\bin\java.exe" -jar "%CODEQL_EXTRACTOR_CSHARP_ROOT%\tools\extractor-asp.jar" .

csharp/tools/pre-finalize.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ set -eu
1010
--size-limit 10m \
1111
--language xml \
1212
-- \
13-
"$CODEQL_EXTRACTOR_CSHARP_WIP_DATABASE"
13+
"$CODEQL_EXTRACTOR_CSHARP_WIP_DATABASE" \
14+
> /dev/null 2>&1
1415

1516
"$CODEQL_JAVA_HOME/bin/java" -jar "$CODEQL_EXTRACTOR_CSHARP_ROOT/tools/extractor-asp.jar" .

0 commit comments

Comments
 (0)