Commit e56c8850 authored by xster's avatar xster Committed by GitHub

Fix simctl race (#10757)

* remove usages of booted

* fix
parent 432ffde5
...@@ -474,7 +474,7 @@ class IOSSimulator extends Device { ...@@ -474,7 +474,7 @@ class IOSSimulator extends Device {
// Launch the updated application in the simulator. // Launch the updated application in the simulator.
try { try {
SimControl.instance.launch(id, app.id, args); await SimControl.instance.launch(id, app.id, args);
} catch (error) { } catch (error) {
printError('$error'); printError('$error');
return new LaunchResult.failed(); return new LaunchResult.failed();
...@@ -529,7 +529,7 @@ class IOSSimulator extends Device { ...@@ -529,7 +529,7 @@ class IOSSimulator extends Device {
throwToolExit('Could not find the built application bundle at ${bundle.path}.'); throwToolExit('Could not find the built application bundle at ${bundle.path}.');
// Step 3: Install the updated bundle to the simulator. // Step 3: Install the updated bundle to the simulator.
SimControl.instance.install(id, fs.path.absolute(bundle.path)); await SimControl.instance.install(id, fs.path.absolute(bundle.path));
} }
Future<Null> _sideloadUpdatedAssetsForInstalledApplicationBundle(ApplicationPackage app) => Future<Null> _sideloadUpdatedAssetsForInstalledApplicationBundle(ApplicationPackage app) =>
......
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