aboutsummaryrefslogtreecommitdiffstats
path: root/MgaRepo/commands/up.py
blob: 18635f91218608d405fa4d32275af62f46b81176 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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:
    -r REV  Revision to update to
    -h      help
"""

def parse_options():
    parser = OptionParser(help=HELP)
    parser.add_option("-r", dest="revision")
    opts, args = parser.parse_args()
    if args:
        opts.target = args[0]
    return opts

def main():
    do_command(parse_options, update)