diff mbox

[U-Boot] buildman: fix typos of --dry-run help message

Message ID 1409847582-7442-1-git-send-email-yamada.m@jp.panasonic.com
State Superseded
Headers show

Commit Message

Masahiro Yamada Sept. 4, 2014, 4:19 p.m. UTC
try run    => dry run
no nothing => do nothing/
"..."      => '...'

The last one is for consistency with the other option helps.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
---

 tools/buildman/buildman.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Simon Glass Sept. 4, 2014, 4:43 p.m. UTC | #1
On 4 September 2014 10:19, Masahiro Yamada <yamada.m@jp.panasonic.com> wrote:
> try run    => dry run
> no nothing => do nothing/
> "..."      => '...'
>
> The last one is for consistency with the other option helps.
>
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

Acked-by: Simon Glass <sjg@chromium.org>
diff mbox

Patch

diff --git a/tools/buildman/buildman.py b/tools/buildman/buildman.py
index e18859b..f01e14c 100755
--- a/tools/buildman/buildman.py
+++ b/tools/buildman/buildman.py
@@ -97,7 +97,7 @@  parser.add_option('-k', '--keep-outputs', action='store_true',
 parser.add_option('--list-tool-chains', action='store_true', default=False,
        help='List available tool chains')
 parser.add_option('-n', '--dry-run', action='store_true', dest='dry_run',
-       default=False, help="Do a try run (describe actions, but no nothing)")
+       default=False, help='Do a dry run (describe actions, but do nothing)')
 parser.add_option('-o', '--output-dir', type='string',
        dest='output_dir', default='..',
        help='Directory where all builds happen and buildman has its workspace (default is ../)')