mirror of
https://github.com/bevyengine/bevy
synced 2024-11-10 07:04:33 +00:00
Fixed iOS documentation typo for xcrun command (#12112)
``` $ xcrun simctl devices list Unrecognized subcommand: devices usage: simctl [--set <path>] [--profiles <path>] <subcommand> ... simctl help [subcommand] Command line utility to control the Simulator ``` # Objective - The `examples/README.md` contains an invalid example command for listing iOS devices using `xcrun`. ## Solution - Update example command to omit the current invalid subcommand "`devices`".
This commit is contained in:
parent
e0e9794c9e
commit
a463d0c637
2 changed files with 2 additions and 2 deletions
|
@ -175,7 +175,7 @@ make run
|
||||||
```
|
```
|
||||||
|
|
||||||
In an ideal world, this will boot up, install and run the app for the first
|
In an ideal world, this will boot up, install and run the app for the first
|
||||||
iOS simulator in your `xcrun simctl devices list`. If this fails, you can
|
iOS simulator in your `xcrun simctl list devices`. If this fails, you can
|
||||||
specify the simulator device UUID via:
|
specify the simulator device UUID via:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|
|
@ -518,7 +518,7 @@ make run
|
||||||
```
|
```
|
||||||
|
|
||||||
In an ideal world, this will boot up, install and run the app for the first
|
In an ideal world, this will boot up, install and run the app for the first
|
||||||
iOS simulator in your `xcrun simctl devices list`. If this fails, you can
|
iOS simulator in your `xcrun simctl list devices`. If this fails, you can
|
||||||
specify the simulator device UUID via:
|
specify the simulator device UUID via:
|
||||||
|
|
||||||
```sh
|
```sh
|
||||||
|
|
Loading…
Reference in a new issue