Commit 5a793dd4 authored by Devon Carew's avatar Devon Carew

Merge pull request #1620 from devoncarew/ios_output

remove an extraneous line of output when launching the simulator
parents e739d743 27ae6c8b
......@@ -476,7 +476,7 @@ class IOSSimulator extends Device {
}
// Step 4: Launch the updated application in the simulator
int launchResult = await runCommandAndStreamOutput([
runCheckedSync([
xcrunPath,
'simctl',
'launch',
......@@ -484,11 +484,6 @@ class IOSSimulator extends Device {
app.id
]);
if (launchResult != 0) {
printError('Could not launch the freshly installed application on the simulator');
return false;
}
printTrace('Successfully started ${app.name} on $id');
return 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