Commit 82dbd43e authored by Jason Simmons's avatar Jason Simmons

Fix the paths for local engine builds targeting the host platform (#3855)

parent 6b9464e8
......@@ -87,14 +87,14 @@ class FlutterCommandRunner extends CommandRunner {
'Path to your host Debug out directory (i.e. the one that runs on your workstation, not a device),\n'
'if you are building Flutter locally.\n'
'This path is relative to --engine-src-path. Not normally required.',
defaultsTo: 'out/Debug/');
defaultsTo: 'out/host_debug_unopt/');
argParser.addOption('host-release-build-path',
hide: !verboseHelp,
help:
'Path to your host Release out directory (i.e. the one that runs on your workstation, not a device),\n'
'if you are building Flutter locally.\n'
'This path is relative to --engine-src-path. Not normally required.',
defaultsTo: 'out/Release/');
defaultsTo: 'out/host_debug/');
argParser.addOption('android-debug-build-path',
hide: !verboseHelp,
......
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