commit 8676664398c146b45eeeec9f2f5ffd8b9a6966e2 parent f1b35449c07433dfcc29f7c72650a16bd7b76c12 Author: Chris Bracken <chris@bracken.jp> Date: Tue, 11 Jun 2013 22:13:48 -0700 Replaced MacPorts with homebrew Diffstat:
M | .aliases | | | 2 | +- |
M | .paths | | | 8 | ++++---- |
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/.aliases b/.aliases @@ -1,7 +1,7 @@ # ~/.aliases # add color -if [[ -x /usr/bin/dircolors || -x /opt/local/libexec/gnubin/dircolors ]]; then +if [[ -x /usr/bin/dircolors || -x /usr/homebrew/opt/coreutils/libexec/gnubin/dircolors ]]; then test -r ~/.dircolors && eval "$(dircolors -b ~/.dircolors)" || eval "$(dircolors -b)" alias ls='ls --color=auto' alias grep='grep --color=auto' diff --git a/.paths b/.paths @@ -16,7 +16,7 @@ path_append() { # set PATH so it includes user's private bin if it exists path_prepend "$HOME/bin" -# update PATH variable for use with MacPorts -path_prepend "/opt/local/sbin" -path_prepend "/opt/local/bin" -path_prepend "/opt/local/libexec/gnubin" +# update PATH variable for use with brew +path_prepend "/usr/homebrew/sbin" +path_prepend "/usr/homebrew/bin" +path_prepend "/usr/homebrew/opt/coreutils/libexec/gnubin"