summaryrefslogtreecommitdiffstats
path: root/src/fedpkg.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/fedpkg.py')
-rwxr-xr-xsrc/fedpkg.py9
1 files changed, 8 insertions, 1 deletions
diff --git a/src/fedpkg.py b/src/fedpkg.py
index dbae1a8..2fc5e5c 100755
--- a/src/fedpkg.py
+++ b/src/fedpkg.py
@@ -1056,7 +1056,14 @@ packages will be built sequentially.
# Build locally
parser_local = subparsers.add_parser('local',
- help = 'Local test rpmbuild binary')
+ help = 'Local test rpmbuild binary',
+ formatter_class = argparse.RawDescriptionHelpFormatter,
+ description=textwrap.dedent("""\
+ Locally test run of rpmbuild producing binary RPMs.
+
+ The rpmbuild output will be logged into a file named
+ .build-%{version}-%{release}.log
+ """))
parser_local.add_argument('--arch', help = 'Build for arch')
# optionally define old style hashsums
parser_local.add_argument('--md5', action = 'store_true',