Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: xcode 10.2 compatibility for
run-ios
command
parse output of simulator list provided by xcode 10.2 In Xcode 10.2, the output of `xcrun simctl list --json devices` has changed to include a namespace within each version group. This commit makes a backwards-compatible adjustment to account for this change in format. To illustrate: Before ====== ``` { "devices": { "iOS 10.0": [ ... ] } } ``` After ===== ``` { "devices": { "com.apple.CoreSimulator.SimRuntime.iOS-10-0": [ ... ] } } ```
- Loading branch information