diff options
Diffstat (limited to 'MgaRepo/commands/up.py')
-rw-r--r-- | MgaRepo/commands/up.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/MgaRepo/commands/up.py b/MgaRepo/commands/up.py new file mode 100644 index 0000000..646a79f --- /dev/null +++ b/MgaRepo/commands/up.py @@ -0,0 +1,22 @@ +from MgaRepo import Error +from MgaRepo.command import * +from MgaRepo.rpmutil import update + +HELP = """\ +Usage: mgarepo up [PATH] + +Update the package working copy and synchronize all binaries. + +Options: + -h help +""" + +def parse_options(): + parser = OptionParser(help=HELP) + opts, args = parser.parse_args() + if args: + opts.target = args[0] + return opts + +def main(): + do_command(parse_options, update) |