Commit f9c7a8f6 authored by Eric Seidel's avatar Eric Seidel

Make `flutter start` not report erroneous failure

Was failing when starting in the iOS Simulator

@chinmaygarde
parent 67c4ff99
......@@ -108,6 +108,8 @@ abstract class StartCommandBase extends FlutterCommand {
bool result = await device.startApp(package);
if (!result) {
logging.severe('Could not start \'${package.name}\' on \'${device.id}\'');
} else {
startedSomething = true;
}
}
}
......
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