Skip to content

Commit aff9136

Browse files
committed
fix(ios): Fix syntax errors
1 parent 603f636 commit aff9136

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/ios_simulator_start.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ parameters:
99
steps:
1010
- run:
1111
name: Remove all simulators to avoid conflicts with the one we're going to use
12-
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
12+
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
1313
- run:
1414
name: Create the device simulator we need
1515
command: xcrun simctl create "<<parameters.device>>" "<<parameters.device>>"

0 commit comments

Comments
 (0)