From 5d7a29093cda9f096f545c623aaf2fbd9d759290 Mon Sep 17 00:00:00 2001 From: Kyle Altendorf Date: Sat, 2 Nov 2024 19:26:47 -0400 Subject: [PATCH] use `brew install --formula` (#18808) * use `brew install --formula` to quiet down the warnings https://github.com/Chia-Network/chia-blockchain/actions/runs/11632671637/job/32408059295#step:13:38 ```console Warning: Treating cmake as a formula. For the cask, use homebrew/cask/cmake or specify the `--cask` flag. To silence this message, use the `--formula` flag. Warning: cmake 3.30.5 is already installed and up-to-date. To reinstall 3.30.5, run: brew reinstall cmake Warning: gmp 6.3.0 is already installed and up-to-date. ``` * Update install-timelord.sh --- install-timelord.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install-timelord.sh b/install-timelord.sh index c3c476c646be..1f5a1f4ba286 100755 --- a/install-timelord.sh +++ b/install-timelord.sh @@ -131,7 +131,7 @@ else symlink_vdf_bench "$PYTHON_VERSION" elif [ -e venv/bin/python ] && test "$MACOS"; then echo "Installing chiavdf dependencies for MacOS." - brew install boost cmake gmp + brew install --formula --quiet boost cmake gmp echo "Installing chiavdf from source." # User needs to provide required packages echo venv/bin/python -m pip install --force --no-binary chiavdf "$CHIAVDF_VERSION"