From bcb9dd7f050c0ff52833fe3feb745365947ab4d2 Mon Sep 17 00:00:00 2001 From: Hans Ulrich Niedermann Date: Fri, 21 Jan 2011 09:45:42 +0100 Subject: Document that "fedpkg local" logs to file https://fedorahosted.org/fedora-packager/ticket/64 --- src/fedpkg.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) 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', -- cgit