Commit 15decfca authored by Yegor's avatar Yegor

reenable --checked option in flutter drive (#3916)

parent d406bb99
......@@ -269,7 +269,8 @@ Future<int> startApp(DriveCommand command, BuildMode buildMode) async {
mainPath: mainPath,
route: command.route,
debuggingOptions: new DebuggingOptions.enabled(
checked: buildMode == BuildMode.debug,
// TODO(devoncarew): Change this to 'buildMode == BuildMode.debug'.
checked: command.argResults['checked'],
startPaused: true,
observatoryPort: command.debugPort
),
......
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