Commit 49ebb3e2 authored by Devon Carew's avatar Devon Carew Committed by GitHub

hide some options from flutter -h (#7288)

parent 1b9939af
...@@ -96,22 +96,19 @@ class FlutterCommandRunner extends CommandRunner<Null> { ...@@ -96,22 +96,19 @@ class FlutterCommandRunner extends CommandRunner<Null> {
'Use this to select a specific version of the engine if you have built multiple engine targets.\n' 'Use this to select a specific version of the engine if you have built multiple engine targets.\n'
'This path is relative to --local-engine-src-path/out.'); 'This path is relative to --local-engine-src-path/out.');
argParser.addOption('record-to', argParser.addOption('record-to',
hide: !verboseHelp,
help: help:
'Enables recording of process invocations (including stdout and ' 'Enables recording of process invocations (including stdout and stderr of all such invocations),\n'
'stderr of all such invocations), and serializes that recording to ' 'and serializes that recording to the specified location. If the location is a directory, a ZIP\n'
'the specified location.\n' 'file named `recording.zip` will be created in that directory. Otherwise, a ZIP file will be\n'
'If the location is a directory, a ZIP file named `recording.zip` '
'will be created in that directory. Otherwise, a ZIP file will be '
'created with the path specified in this flag.'); 'created with the path specified in this flag.');
argParser.addOption('replay-from', argParser.addOption('replay-from',
hide: !verboseHelp,
help: help:
'Enables mocking of process invocations by replaying their stdout, ' 'Enables mocking of process invocations by replaying their stdout, stderr, and exit code from\n'
'stderr, and exit code from the specified recording (obtained ' 'the specified recording (obtained via --record-to). If the location is a file, it is assumed to\n'
'via --record-to).\n' 'be a ZIP file structured according to the output of --record-to. If the location is a directory,\n'
'If the location is a file, it is assumed to be a ZIP file ' 'it is assumed to be an unzipped version of such a ZIP file.');
'structured according to the output of --record-to. If the '
'location is a directory, it is assumed to be an unzipped version '
'of such a ZIP file.');
} }
@override @override
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment