diff options
author | Dmitry Ilvokhin <d@ilvokhin.com> | 2025-08-17 19:53:58 +0100 |
---|---|---|
committer | Dmitry Ilvokhin <d@ilvokhin.com> | 2025-08-17 19:53:58 +0100 |
commit | 2ea9e69d78195bd9c36c9ab4c384de0191bf232b (patch) | |
tree | 4a6a7abe94c74b5dc546f10b34c1b3370a2ef0dd /misc | |
parent | f7acb87773ebc00e567527645ec86171694816b8 (diff) | |
download | infra-2ea9e69d78195bd9c36c9ab4c384de0191bf232b.tar.gz infra-2ea9e69d78195bd9c36c9ab4c384de0191bf232b.tar.bz2 infra-2ea9e69d78195bd9c36c9ab4c384de0191bf232b.zip |
Use /opt/homebrew/bin instead of /usr/local/sbin
Homebrew changed default installation prefix on Apple Silicon Macs.
Diffstat (limited to 'misc')
-rw-r--r-- | misc/dotfiles/bash_profile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/misc/dotfiles/bash_profile b/misc/dotfiles/bash_profile index bdcb007..0a86499 100644 --- a/misc/dotfiles/bash_profile +++ b/misc/dotfiles/bash_profile @@ -1,5 +1,5 @@ export EDITOR=vim -export PATH="$HOME/bin:/usr/local/sbin:$PATH" +export PATH="$HOME/bin:/opt/homebrew/bin:$PATH" if [ -f $HOME/.bashrc ]; then . $HOME/.bashrc |