Skip to content

Commit

Permalink
tune readme
Browse files Browse the repository at this point in the history
  • Loading branch information
yury committed Dec 28, 2024
1 parent bf1e93d commit 0d26236
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -35,12 +35,12 @@ Run tests on your iPhone or iPad.
3. Run `cargo box devices` to find out your DEVICE_ID
4. Create `.box` file with contents:
```
BOX_ORG_ID = unique org id, for instance org.cidre
DEVELOPMENT_TEAM = team id from steep 2
BOX_ORG_ID = unique org id, for instance org.cidre (it may be reserved already)
DEVELOPMENT_TEAM = team id from step 2
DEVICE_ID = device id from step 3
```
5. Run `cargo t --target aarch64-apple-ios`
6. Run `cargo r --target aarch64-apple-ios --example`
5. Run `cargo t --target aarch64-apple-ios` (make sure you have connected and unlocked device)
6. Run `cargo r --target aarch64-apple-ios --example device-formats`

### Versioning (API Availability)

Expand Down
4 changes: 2 additions & 2 deletions cargo-box/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -31,8 +31,8 @@ enum Cmd {
fn main() {
// Handle different args from different calls:
//
// cargo-box -> cargo-bx (no extra box)
// cargo box -> cargo-bx bx (extra box)
// cargo-box -> cargo-box (no extra box)
// cargo box -> cargo-box bx (extra box)
let mut args: Vec<_> = env::args().collect();
if args.get(1).map(|v| v == "box") == Some(true) {
args.remove(1);
Expand Down

0 comments on commit 0d26236

Please # to comment.