diff --git a/bash/.bash_profile b/bash/.bash_profile index 63fdefd..d1b7a97 100644 --- a/bash/.bash_profile +++ b/bash/.bash_profile @@ -22,15 +22,15 @@ if [ $(uname) == "Darwin" ]; then # Shhh Catlina, we don't care! export BASH_SILENCE_DEPRECATION_WARNING=1 - # Homebrew - if [ -d /opt/homebrew ]; then - eval $(/opt/homebrew/bin/brew shellenv) - fi - # M1 specific hacks if [ $(uname -p) == "arm" ]; then # Stop golang progs having fun with Rosetta 2 (https://yaleman.org/post/2021/2021-01-01-apple-m1-terraform-and-golang/) export GODEBUG=asyncpreemptoff=1 + + # Homebrew + if [ -d /opt/homebrew ]; then + eval $(/opt/homebrew/bin/brew shellenv) + fi fi fi