From 82dbd43e74995afa35b602737d802204565bddb3 Mon Sep 17 00:00:00 2001 From: Jason Simmons Date: Wed, 11 May 2016 11:11:34 -0700 Subject: [PATCH] Fix the paths for local engine builds targeting the host platform (#3855) --- .../flutter_tools/lib/src/runner/flutter_command_runner.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart b/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart index c905c573434..0cbe42992d9 100644 --- a/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart +++ b/packages/flutter_tools/lib/src/runner/flutter_command_runner.dart @@ -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,