提交 e6c78be5 编写于 作者: K kohsuke

removing the -q option to assist troubleshooting of issue #167.


git-svn-id: https://hudson.dev.java.net/svn/hudson/trunk/hudson/main@1180 71c3de6d-444a-0410-be80-ed276b4c234a
上级 e772f984
......@@ -190,7 +190,7 @@ public class SubversionSCM extends AbstractCVSFamilySCM {
StringTokenizer tokens = new StringTokenizer(modules);
while(tokens.hasMoreTokens()) {
ArgumentListBuilder cmd = new ArgumentListBuilder();
cmd.add(DESCRIPTOR.getSvnExe(),"co","-q","--non-interactive");
cmd.add(DESCRIPTOR.getSvnExe(),"co",/*"-q",*/"--non-interactive");
if(username!=null)
cmd.add("--username",username);
if(otherOptions!=null)
......@@ -321,7 +321,7 @@ public class SubversionSCM extends AbstractCVSFamilySCM {
public boolean update(Launcher launcher, FilePath remoteDir, BuildListener listener) throws IOException {
ArgumentListBuilder cmd = new ArgumentListBuilder();
cmd.add(DESCRIPTOR.getSvnExe(), "update", "-q", "--non-interactive");
cmd.add(DESCRIPTOR.getSvnExe(), "update", /*"-q",*/ "--non-interactive");
if(username!=null)
cmd.add(" --username ",username);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册