2

How do I list all formulas I installed with brew install --HEAD. Certain formulas depend of more recent version of a formula and upgrade every time I run brew upgrade if a commit has been pushed, I wish to check if the dependency has been satisfied and install normal version.

This was the case where neovim nightly(5.0.0) where it required HEAD version of luarocks (Undocumented in release page) and recently just works with normal installation

1 Answers1

3

brew list --versions | grep HEAD

$ brew list --versions | grep HEAD
libimobiledevice HEAD-bfaf1a1
libusbmuxd HEAD-73cb5c1
grg
  • 201,078