Skip to content

Instantly share code, notes, and snippets.

@Debdut
Created December 4, 2021 20:19
Show Gist options
  • Save Debdut/a04844fd30ce1b09a0edfd894a0a409c to your computer and use it in GitHub Desktop.
Save Debdut/a04844fd30ce1b09a0edfd894a0a409c to your computer and use it in GitHub Desktop.
Fix Brew in Linux
# Append this to .zshrc, .profile or .bashrc
# Add Brew bin to PATH
BREW_BIN=$(brew --prefix)/bin/
if [ -d BREW_BIN ] ; then
PATH="$PATH:$BREW_BIN"
fi
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment