aboutsummaryrefslogtreecommitdiffstats
path: root/RepSys/commands
diff options
context:
space:
mode:
authorBogdano Arendartchuk <bogdano@mandriva.org>2008-02-05 20:47:14 +0000
committerBogdano Arendartchuk <bogdano@mandriva.org>2008-02-05 20:47:14 +0000
commit007212afccceca682e0f98f2871398a3ff35db03 (patch)
tree0156f2a3dc51b2e548ca5262073af98b1a7fe29f /RepSys/commands
parente196e676aa302cd3a1f7b37f259491a8b03cc483 (diff)
downloadmgarepo-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/commands')
-rw-r--r--RepSys/commands/ci.py4
1 files changed, 4 insertions, 0 deletions
diff --git a/RepSys/commands/ci.py b/RepSys/commands/ci.py
index 9ffa3bd..b6a54f6 100644
--- a/RepSys/commands/ci.py
+++ b/RepSys/commands/ci.py
@@ -11,6 +11,8 @@ in case the option "mirror" is set in repsys.conf.
Options:
-h Show this message
+ -m MSG Use the MSG as the log message
+ -F FILE Read log message from FILE
Examples:
repsys ci
@@ -20,6 +22,8 @@ Examples:
def parse_options():
parser = OptionParser(help=HELP)
parser.add_option("-m", dest="message", default=None)
+ parser.add_option("-F", dest="logfile", type="string",
+ default=None)
opts, args = parser.parse_args()
if len(args):
opts.target = args[0]