Skip to content

Commit

Permalink
Remove stderr redirection
Browse files Browse the repository at this point in the history
  • Loading branch information
rfay committed Oct 14, 2024
1 parent 8f78ae3 commit 7bd652a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ runs:
shell: bash
run: |
# For bats-assert and friends
brew tap kaos/shell >/dev/null 2>&1
brew install bats-core bats-file bats-assert bats-support jq mkcert yq >/dev/null 2>&1
brew tap kaos/shell >/dev/null
brew install bats-core bats-file bats-assert bats-support jq mkcert yq >/dev/null
mkcert -install
- uses: actions/checkout@v4
Expand All @@ -80,12 +80,12 @@ runs:
- name: Use ddev stable
shell: bash
if: inputs.ddev_version == 'stable'
run: brew install ddev/ddev/ddev >/dev/null 2>&1
run: brew install ddev/ddev/ddev >/dev/null

- name: Use ddev HEAD
shell: bash
if: inputs.ddev_version == 'HEAD'
run: brew install --HEAD ddev/ddev/ddev >/dev/null 2>&1
run: brew install --HEAD ddev/ddev/ddev >/dev/null

- name: Download docker images
shell: bash
Expand Down

0 comments on commit 7bd652a

Please sign in to comment.