aboutsummaryrefslogtreecommitdiffstats
path: root/RepSys/svn.py
diff options
context:
space:
mode:
authorBogdano Arendartchuk <bogdano@mandriva.org>2007-06-05 19:17:27 +0000
committerBogdano Arendartchuk <bogdano@mandriva.org>2007-06-05 19:17:27 +0000
commit5f1a15b9c7b253c0267d05613683ac1fb5f88e6c (patch)
tree691b3689c17df655db9a075c5d4853b99e217d42 /RepSys/svn.py
parent5c221808ecb832d3419bb96002ede1a553ed7b73 (diff)
downloadmgarepo-5f1a15b9c7b253c0267d05613683ac1fb5f88e6c.tar
mgarepo-5f1a15b9c7b253c0267d05613683ac1fb5f88e6c.tar.gz
mgarepo-5f1a15b9c7b253c0267d05613683ac1fb5f88e6c.tar.bz2
mgarepo-5f1a15b9c7b253c0267d05613683ac1fb5f88e6c.tar.xz
mgarepo-5f1a15b9c7b253c0267d05613683ac1fb5f88e6c.zip
Improved (and fixed) the support to mirrors and "switch" subcommand
- added the switch subcommand to quickly switch between the default and the mirrored repositories - fixed bug of generating bogus mirror URLs - make "ci" smarter by only relocation if something has been changed in the working copy and it is not already relocated.
Diffstat (limited to 'RepSys/svn.py')
-rw-r--r--RepSys/svn.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/RepSys/svn.py b/RepSys/svn.py
index b4ad4e9..cc3811d 100644
--- a/RepSys/svn.py
+++ b/RepSys/svn.py
@@ -189,6 +189,8 @@ class SVN:
cmd.append("-v")
if kwargs.get("noignore"):
cmd.append("--no-ignore")
+ if kwargs.get("quiet"):
+ cmd.append("--quiet")
status, output = self._execsvn(*cmd, **kwargs)
if status == 0:
return [x.split() for x in output.splitlines()]