diff options
author | Bogdano Arendartchuk <bogdano@mandriva.org> | 2008-02-05 20:47:14 +0000 |
---|---|---|
committer | Bogdano Arendartchuk <bogdano@mandriva.org> | 2008-02-05 20:47:14 +0000 |
commit | 007212afccceca682e0f98f2871398a3ff35db03 (patch) | |
tree | 0156f2a3dc51b2e548ca5262073af98b1a7fe29f /RepSys/rpmutil.py | |
parent | e196e676aa302cd3a1f7b37f259491a8b03cc483 (diff) | |
download | mgarepo-007212afccceca682e0f98f2871398a3ff35db03.tar mgarepo-007212afccceca682e0f98f2871398a3ff35db03.tar.gz mgarepo-007212afccceca682e0f98f2871398a3ff35db03.tar.bz2 mgarepo-007212afccceca682e0f98f2871398a3ff35db03.tar.xz mgarepo-007212afccceca682e0f98f2871398a3ff35db03.zip |
Added option -F to repsys ci, as in svn ci
Diffstat (limited to 'RepSys/rpmutil.py')
-rw-r--r-- | RepSys/rpmutil.py | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/RepSys/rpmutil.py b/RepSys/rpmutil.py index a461fc2..7481b72 100644 --- a/RepSys/rpmutil.py +++ b/RepSys/rpmutil.py @@ -437,7 +437,7 @@ def sync(dryrun=False): if not dryrun: svn.add(path, local=True) -def commit(target=".", message=None): +def commit(target=".", message=None, logfile=None): svn = SVN() status = svn.status(target, quiet=True) if not status: @@ -453,10 +453,13 @@ def commit(target=".", message=None): print "relocated to", newurl # we can't use the svn object here because svn --non-interactive option # hides VISUAL - mopt = "" + opts = [] if message is not None: - mopt = "-m \"%s\"" % message - os.system("svn ci %s %s" % (mopt, target)) + opts.append("-m \"%s\"" % message) + if logfile is not None: + opts.append("-F \"%s\"" % logfile) + mopts = " ".join(opts) + os.system("svn ci %s %s" % (mopts, target)) if mirrored: print "use \"repsys switch\" in order to switch back to mirror "\ "later" |