Skip to content

Commit 435d4e3

Browse files
committed
ENH: Make brew work in quite mode to silence warnings
Make `brew` work in quite mode to silence warnings. Fixes: ``` Warning: Treating doxygen as a formula. For the cask, use homebrew/cask/doxygen or specify the `--cask` flag. ``` and ``` Warning: zstd 1.5.6 is already installed and up-to-date. To reinstall 1.5.6, run: brew reinstall zstd ``` and other similar warnings raised for example in: https://github.com/InsightSoftwareConsortium/ITKAnalyzeObjectMap/actions/runs/10012233814
1 parent ac32eda commit 435d4e3

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/macpython-download-cache-and-build-module-wheels.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@
3939

4040
# Install dependencies
4141
brew update
42-
brew install zstd aria2 gnu-tar doxygen ninja
43-
brew upgrade cmake
42+
brew install --quiet zstd aria2 gnu-tar doxygen ninja
43+
brew upgrade --quiet cmake
4444

4545
if [[ $(arch) == "arm64" ]]; then
4646
tarball_arch="-arm64"

0 commit comments

Comments
 (0)