1
0
mirror of synced 2024-09-23 19:18:24 +02:00

git: Silence brew commands spewing errors into the CI log

This commit is contained in:
WerWolv 2024-08-03 18:41:17 +02:00
parent e0712f73c2
commit c3d15157ad

View File

@ -206,14 +206,15 @@ jobs:
- name: ⬇️ Install dependencies
run: |
brew reinstall python || brew link --overwrite python || true
brew bundle --no-lock --file dist/Brewfile
brew reinstall python 2>&1 >/dev/null || true
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
- name: ⬇️ Install classic glfw
if: ${{! matrix.custom_glfw }}
run: |
brew install glfw || true
brew install glfw 2>&1 >/dev/null || true
- name: ⬇️ Install .NET
uses: actions/setup-dotnet@v4