diff options
author | Bogdano Arendartchuk <bogdano@mandriva.org> | 2006-02-13 18:04:05 +0000 |
---|---|---|
committer | Bogdano Arendartchuk <bogdano@mandriva.org> | 2006-02-13 18:04:05 +0000 |
commit | 8475700b37374ed8050fd01448fb5bc28249cfb3 (patch) | |
tree | 2c9737719f6be29bb9bc214248f95185133736e7 | |
parent | e8ab7ae50df39a8284823624d3fefdbb3a2c325b (diff) | |
download | mgarepo-8475700b37374ed8050fd01448fb5bc28249cfb3.tar mgarepo-8475700b37374ed8050fd01448fb5bc28249cfb3.tar.gz mgarepo-8475700b37374ed8050fd01448fb5bc28249cfb3.tar.bz2 mgarepo-8475700b37374ed8050fd01448fb5bc28249cfb3.tar.xz mgarepo-8475700b37374ed8050fd01448fb5bc28249cfb3.zip |
- changed the way create-srpm is called, now using options -r and -t to
ease readability a bit
-rw-r--r-- | RepSys/commands/submit.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/RepSys/commands/submit.py b/RepSys/commands/submit.py index 3840296..b205fad 100644 --- a/RepSys/commands/submit.py +++ b/RepSys/commands/submit.py @@ -101,7 +101,7 @@ def submit(pkgdirurl, revision, target, list=0): else: if list: raise Error, "unable to list targets from svn+ssh:// URLs" - command = "ssh %s /usr/share/repsys/create-srpm '%s' %s %s" % ( + command = "ssh %s /usr/share/repsys/create-srpm '%s' -r %s -t %s" % ( host, pkgdirurl, revision, target) status, output = execcmd(command) if status == 0: |