blob: 42ede8db438242a548b8b6b1b97c480d0de8ca3d (
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
28
29
30
31
|
#!/usr/bin/python
from RepSys.command import *
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.
"No changes are commited."
Options:
--dry-run Print results without changing the working copy
-h Show this message
Examples:
repsys sync
"""
def parse_options():
parser = OptionParser(help=HELP)
parser.add_option("--dry-run", dest="dryrun", default=False,
action="store_true")
opts, args = parser.parse_args()
if len(args):
opts.target = args[0]
return opts
def main():
do_command(parse_options, sync)
|