Skip to content

Instantly share code, notes, and snippets.

@pmarreck
Created January 6, 2022 17:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pmarreck/df47b7df2ada055a5bf10b6f8585fd50 to your computer and use it in GitHub Desktop.
Save pmarreck/df47b7df2ada055a5bf10b6f8585fd50 to your computer and use it in GitHub Desktop.
Kick/fix homebrew
for tab in $(grep -l -o '[a-z0-9-]*proto' $(brew --cellar)/*/*/INSTALL_RECEIPT.json)
do
formula=$(basename $(dirname $(dirname $tab)))
brew remove --ignore-dependencies $formula
brew install $formula
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment