Skip to content

Commit

Permalink
use brew install --formula (#18808)
Browse files Browse the repository at this point in the history
* 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
  • Loading branch information
altendky authored Nov 2, 2024
1 parent 40c3ccc commit 5d7a290
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion install-timelord.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down

0 comments on commit 5d7a290

Please sign in to comment.