Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mpc-hc/mpc-hc.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXhmikosR <xhmikosr@users.sourceforge.net>2013-07-12 20:42:35 +0400
committerXhmikosR <xhmikosr@users.sourceforge.net>2013-07-13 22:41:27 +0400
commitd5cc3a5117774866af3f26d5f871b753a5877482 (patch)
tree52f97701dd14329f7952307a2a1302b579f5bd51 /contrib/coverity.bat
parent9d47095616e16e24f6749b0eba6a9eb4af1f06ff (diff)
Update coverity.bat.
Redirect stdout to stderr and both to NUL for the tar check.
Diffstat (limited to 'contrib/coverity.bat')
-rw-r--r--contrib/coverity.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/coverity.bat b/contrib/coverity.bat
index 8af081515..d02a40c63 100644
--- a/contrib/coverity.bat
+++ b/contrib/coverity.bat
@@ -31,7 +31,7 @@ SET MSBUILD_SWITCHES=/nologo /consoleloggerparameters:Verbosity=minimal /maxcpuc
"%COVDIR%\bin\cov-build.exe" --dir cov-int MSBuild "..\mpc-hc.sln" %MSBUILD_SWITCHES%
:tar
-tar --version 2>NUL || (ECHO. & ECHO ERROR: tar not found & GOTO SevenZip)
+tar --version 1>&2 2>NUL || (ECHO. & ECHO ERROR: tar not found & GOTO SevenZip)
tar czvf MPC-HC.tgz cov-int
GOTO End