We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fe185f commit edddc53Copy full SHA for edddc53
1 file changed
.github/actions/setup-e2e-env/action.yml
@@ -330,7 +330,13 @@ runs:
330
331
- name: Install applesimutils
332
if: ${{ inputs.platform == 'ios' }}
333
- run: brew tap wix/brew && brew install applesimutils
+ run: |
334
+ if ! brew list applesimutils &>/dev/null; then
335
+ brew tap wix/brew
336
+ brew install applesimutils
337
+ else
338
+ echo "applesimutils is already installed, skipping..."
339
+ fi
340
shell: bash
341
342
- name: Check simutils
0 commit comments