git: Silence brew commands spewing errors into the CI log
This commit is contained in:
parent
e0712f73c2
commit
c3d15157ad
7
.github/workflows/build.yml
vendored
7
.github/workflows/build.yml
vendored
@ -206,14 +206,15 @@ jobs:
|
|||||||
|
|
||||||
- name: ⬇️ Install dependencies
|
- name: ⬇️ Install dependencies
|
||||||
run: |
|
run: |
|
||||||
brew reinstall python || brew link --overwrite python || true
|
brew reinstall python 2>&1 >/dev/null || true
|
||||||
brew bundle --no-lock --file dist/Brewfile
|
brew link --overwrite python 2>&1 >/dev/null || true
|
||||||
|
brew bundle --no-lock --file dist/Brewfile 2>&1 >/dev/null || true
|
||||||
rm -rf /usr/local/Cellar/capstone
|
rm -rf /usr/local/Cellar/capstone
|
||||||
|
|
||||||
- name: ⬇️ Install classic glfw
|
- name: ⬇️ Install classic glfw
|
||||||
if: ${{! matrix.custom_glfw }}
|
if: ${{! matrix.custom_glfw }}
|
||||||
run: |
|
run: |
|
||||||
brew install glfw || true
|
brew install glfw 2>&1 >/dev/null || true
|
||||||
|
|
||||||
- name: ⬇️ Install .NET
|
- name: ⬇️ Install .NET
|
||||||
uses: actions/setup-dotnet@v4
|
uses: actions/setup-dotnet@v4
|
||||||
|
Loading…
Reference in New Issue
Block a user