From: INADA Naoki Date: Tue, 7 Mar 2017 08:18:33 +0000 (+0900) Subject: PCbuild: Add -q option to svn export (GH-538) X-Git-Tag: v3.5.4rc1~295 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bef209d449afcdc391b108d197a95b15902197d9;p=thirdparty%2FPython%2Fcpython.git PCbuild: Add -q option to svn export (GH-538) Without this option, AppVeyor log is too unreadable. (cherry picked from commit 8886d5f39286dffa7d9337857b151e7fb4af23fd) --- diff --git a/PCbuild/get_externals.bat b/PCbuild/get_externals.bat index dfaf5496a2b6..9cd13065c7ab 100644 --- a/PCbuild/get_externals.bat +++ b/PCbuild/get_externals.bat @@ -66,7 +66,7 @@ for %%e in (%libraries%) do ( echo.%%e already exists, skipping. ) else ( echo.Fetching %%e... - svn export %SVNROOT%%%e + svn export -q %SVNROOT%%%e ) )