# HG changeset patch # User Augie Fackler # Date 1638983744 18000 # Node ID d3219c644f43584cb23736660d18a6fa87c7b27d # Parent 62e62b8855400c10f9c444cacef09763cb26d4b4 homebrew: handle x86 location too diff --git a/.shell.d/20.homebrew.sh b/.shell.d/20.homebrew.sh --- a/.shell.d/20.homebrew.sh +++ b/.shell.d/20.homebrew.sh @@ -1,3 +1,8 @@ +# ARM location if [ -x /opt/homebrew/bin/brew ] ; then eval "$(/opt/homebrew/bin/brew shellenv)" fi +# x86 location +if [ -x /opt/brew/bin/brew ] ; then + eval "$(/opt/brew/bin/brew shellenv)" +fi