Skip to content

Commit

Permalink
fix(ios): Fix syntax errors
Browse files Browse the repository at this point in the history
  • Loading branch information
matt-oakes committed Apr 21, 2020
1 parent 603f636 commit aff9136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/ios_simulator_start.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ parameters:
steps:
- run:
name: Remove all simulators to avoid conflicts with the one we're going to use
command: xcrun simctl list | awk -F [()]” ‘{ for (i=2; i<NF; i+=2) print $i } | grep ^[-A-Z0–9]*$ | xargs -I uuid xcrun simctl delete uuid
command: xcrun simctl list | awk -F "[()]" '{ for (i=2; i<NF; i+=2) print $i }' | grep '^[-A-Z0–9]*$' | xargs -I uuid xcrun simctl delete uuid
- run:
name: Create the device simulator we need
command: xcrun simctl create "<<parameters.device>>" "<<parameters.device>>"
Expand Down

0 comments on commit aff9136

Please sign in to comment.