From 27ae6c8b40bd12c0ca4a74defe5f65fc6ae91fb8 Mon Sep 17 00:00:00 2001 From: Devon Carew Date: Thu, 4 Feb 2016 13:31:20 -0800 Subject: [PATCH] remove an extraneous line of output when launching the simulator --- packages/flutter_tools/lib/src/ios/device_ios.dart | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/packages/flutter_tools/lib/src/ios/device_ios.dart b/packages/flutter_tools/lib/src/ios/device_ios.dart index 9e5cef17fbf..b7d8abb94f1 100644 --- a/packages/flutter_tools/lib/src/ios/device_ios.dart +++ b/packages/flutter_tools/lib/src/ios/device_ios.dart @@ -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; }