diff options
| author | nsfisis <nsfisis@gmail.com> | 2023-08-29 22:43:00 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2023-09-01 09:25:28 +0900 |
| commit | 08448ec565189dac329a7ca90e27ead8e35733e1 (patch) | |
| tree | 9c76f60c1dff6f68d58c9e7c006440ea12de3b00 | |
| parent | 39d46673237637381abadbcc3d6a6e00a3a0b227 (diff) | |
| download | dotfiles-08448ec565189dac329a7ca90e27ead8e35733e1.tar.gz dotfiles-08448ec565189dac329a7ca90e27ead8e35733e1.tar.zst dotfiles-08448ec565189dac329a7ca90e27ead8e35733e1.zip | |
zsh: update $PATH for newer homebrew
| -rw-r--r-- | .zshrc | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -432,7 +432,9 @@ fi export LD_LIBRARY_PATH=$HOME/lib:$LD_LIBRARY_PATH # To override system-provided Ruby with brewed Ruby -export PATH="/usr/local/opt/ruby/bin:$PATH" +if [[ "$(uname)" == "Darwin" ]]; then + export PATH="/opt/homebrew/opt/ruby/bin:$PATH" +fi export PATH="$HOME/go/bin:$PATH" export PATH="$HOME/.cargo/bin:$PATH" |
