[CI] Suppress spurious brew warning (#12219)

This commit is contained in:
Sebastian Rittau
2024-06-26 11:01:47 +02:00
committed by GitHub
parent d683ddb3ed
commit 68408b3528
2 changed files with 2 additions and 2 deletions

View File

@@ -91,7 +91,7 @@ jobs:
PYTHON_EXECUTABLE="xvfb-run python"
else
if [ "${{ runner.os }}" = "macOS" ] && [ -n "$PACKAGES" ]; then
brew install $PACKAGES
brew install -q $PACKAGES
fi
if [ "${{ runner.os }}" = "Windows" ] && [ -n "$PACKAGES" ]; then

View File

@@ -76,7 +76,7 @@ jobs:
else
if [ "${{ runner.os }}" = "macOS" ] && [ -n "$PACKAGES" ]; then
echo "Installing Homebrew packages: $PACKAGES"
brew install $PACKAGES
brew install -q $PACKAGES
fi
if [ "${{ runner.os }}" = "Windows" ] && [ -n "$PACKAGES" ]; then