diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 75637d53f..fa4f7d21a 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -206,15 +206,15 @@ jobs: - name: ⬇️ Install dependencies run: | - 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 + brew reinstall python || true + brew link --overwrite --quiet python || true + brew bundle --no-lock --quiet --file dist/Brewfile || true rm -rf /usr/local/Cellar/capstone - name: ⬇️ Install classic glfw if: ${{! matrix.custom_glfw }} run: | - brew install glfw 2>&1 >/dev/null || true + brew install --quiet glfw || true - name: ⬇️ Install .NET uses: actions/setup-dotnet@v4