dotfiles

Personal dotfiles
git clone https://git.bracken.jp/dotfiles.git
Log | Files | Refs | LICENSE

commit a7cc6ea98c62bdeea6cb45336601c6b166219996
parent ae560dc86293297727f1bacd5c3f01a0017c1c7c
Author: Chris Bracken <chris@bracken.jp>
Date:   Thu, 28 Jul 2016 18:59:09 -0700

Add ~/.homebrew/bin to path on macOS

Diffstat:
M.paths | 5+++++
1 file changed, 5 insertions(+), 0 deletions(-)

diff --git a/.paths b/.paths @@ -29,5 +29,10 @@ if [[ "$(uname)" == "Darwin" ]]; then path_prepend "/opt/local/bin" fi +# Homebrew +if [[ "$(uname)" == "Darwin" ]]; then + path_prepend "$HOME/.homebrew/bin" +fi + # User's personal bin dir if it exists path_prepend "$HOME/bin"