Commit 2144c7a6 authored by Danny Tuppeny's avatar Danny Tuppeny Committed by Danny Tuppeny

Tweak text because we check IDs and names

And it's not obvious to the use what the ID is.
parent 1c7dce34
...@@ -46,9 +46,9 @@ class EmulatorsCommand extends FlutterCommand { ...@@ -46,9 +46,9 @@ class EmulatorsCommand extends FlutterCommand {
await emulatorManager.getEmulatorsById(id).toList(); await emulatorManager.getEmulatorsById(id).toList();
if (emulators.isEmpty) { if (emulators.isEmpty) {
printStatus("No emulator found that matches the ID '$id'."); printStatus("No emulator found that matches '$id'.");
} else if (emulators.length > 1) { } else if (emulators.length > 1) {
printStatus("More than one emulator matches the ID '$id':\n"); printStatus("More than one emulator matches '$id':\n");
Emulator.printEmulators(emulators); Emulator.printEmulators(emulators);
} else { } else {
emulators.first.launch(); emulators.first.launch();
......
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