Skip to content

Commit edddc53

Browse files
committed
chore: avoid applesimutils warning due already installed pacakge
1 parent 7fe185f commit edddc53

1 file changed

Lines changed: 7 additions & 1 deletion

File tree

.github/actions/setup-e2e-env/action.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -330,7 +330,13 @@ runs:
330330

331331
- name: Install applesimutils
332332
if: ${{ inputs.platform == 'ios' }}
333-
run: brew tap wix/brew && brew install applesimutils
333+
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
334340
shell: bash
335341

336342
- name: Check simutils

0 commit comments

Comments
 (0)