Skip to content

Commit

Permalink
macOS CI: suppress useless brew warnings
Browse files Browse the repository at this point in the history
  • Loading branch information
iakov authored Nov 21, 2024
1 parent b5d48e3 commit 266d7ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buildScripts/github/install_macOS.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ TRIK_BREW_PACKAGES="ccache coreutils libusb pkg-config gnu-sed sshpass p7zip pyt
for pkg in $TRIK_BREW_PACKAGES ; do
p="${pkg##*/}"
p="${p%.*}"
brew install "$pkg" || brew upgrade "$pkg" || brew link --force "$pkg" || echo "Failed to install/upgrade $pkg"
brew install --quiet "$pkg" || brew upgrade "$pkg" || brew link --force "$pkg" || echo "Failed to install/upgrade $pkg"
done
TRIK_PYTHON=python3.${TRIK_PYTHON3_VERSION_MINOR}
"$TRIK_PYTHON" -m pip install -U pip
Expand Down

0 comments on commit 266d7ee

Please sign in to comment.