diff options
author | Mageia SVN-Git Migration <svn-git-migration@mageia.org> | 2011-01-04 16:09:44 +0000 |
---|---|---|
committer | Mageia SVN-Git Migration <svn-git-migration@mageia.org> | 2011-01-04 16:09:44 +0000 |
commit | 846c9e0ef180aa5411803eb1906896dc5e2fc5b9 (patch) | |
tree | f82d50447e2f648e76d051cb20ca4c44b1dde8a8 /RepSys/commands/sync.py | |
parent | 085ad0c1554260fe8f87955ed1ba74e06413f416 (diff) | |
download | mgarepo-846c9e0ef180aa5411803eb1906896dc5e2fc5b9.tar mgarepo-846c9e0ef180aa5411803eb1906896dc5e2fc5b9.tar.gz mgarepo-846c9e0ef180aa5411803eb1906896dc5e2fc5b9.tar.bz2 mgarepo-846c9e0ef180aa5411803eb1906896dc5e2fc5b9.tar.xz mgarepo-846c9e0ef180aa5411803eb1906896dc5e2fc5b9.zip |
Synthesized commit during git-svn import combining previous Mandriva history with Magiea.
This commit consitsts of the following subversion commits:
------------------------------------------------------------------------
r202 | boklm | 2011-01-04 16:09:44 +0000 (Tue, 04 Jan 2011) | 1 line
add repsys
------------------------------------------------------------------------
Diffstat (limited to 'RepSys/commands/sync.py')
-rwxr-xr-x[-rw-r--r--] | RepSys/commands/sync.py | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/RepSys/commands/sync.py b/RepSys/commands/sync.py index a51db22..b4bdaba 100644..100755 --- a/RepSys/commands/sync.py +++ b/RepSys/commands/sync.py @@ -5,12 +5,13 @@ from RepSys.rpmutil import sync HELP = """\ Usage: repsys sync -Will add or removed from the working copy new files added or removed -from the spec file. +Will add or remove from the working copy those files added or removed +in the spec file. -"No changes are commited." +It will not commit the changes. Options: + -c Commit the changes, as in ci --dry-run Print results without changing the working copy --download -d Try to download the source files not found @@ -24,6 +25,8 @@ def parse_options(): parser = OptionParser(help=HELP) parser.add_option("--dry-run", dest="dryrun", default=False, action="store_true") + parser.add_option("-c", dest="ci", default=False, + action="store_true") parser.add_option("-d", "--download", dest="download", default=False, action="store_true") opts, args = parser.parse_args() |