dotfiles

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

commit 2acaa4d34e34b195334c3a6f1e496c5f950dd1d5
parent fe9fe77f050dfdb9dd4b4298aa6d9dc4fe0df114
Author: Chris Bracken <chris@bracken.jp>
Date:   Tue, 23 Oct 2012 22:04:34 -0700

Fix path_add calls

Diffstat:
M.profile | 8++++----
1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.profile b/.profile @@ -23,12 +23,12 @@ path_add() { } # set PATH so it includes user's private bin if it exists -path_add("$HOME/bin") +path_add "$HOME/bin" # update PATH variable for use with MacPorts -path_add("/opt/local/sbin") -path_add("/opt/local/bin") -path_add("/opt/local/libexec/gnubin") +path_add "/opt/local/sbin" +path_add "/opt/local/bin" +path_add "/opt/local/libexec/gnubin" # login message if [ -x /usr/games/fortune ]; then