blob: 09ba2ddb2ec73cd661d0fe2a4bb55feb350660d0 (
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
25
26
27
|
from MgaRepo import Error
from MgaRepo.command import *
from MgaRepo.rpmutil import upload
HELP = """\
Usage: mgarepo upload [OPTIONS] [PATH]
Upload a given file to the binary sources repository.
It will also update the contents of the 'sha1.lst' file and commit.
If the path is a directory, all the contents of the directory will be
uploaded.
Options:
-h help
"""
def parse_options():
parser = OptionParser(help=HELP)
opts, args = parser.parse_args()
opts.paths = args
return opts
def main():
do_command(parse_options, upload)
|