commit 2aec76f51d5a1a93a8c9e2a99c41b93a46f46da9
parent a3448b72ee97b807f91dfbb565b7241e903b4bb8
Author: Chris Bracken <chris@bracken.jp>
Date: Wed, 19 Feb 2014 21:17:37 -0800
Move /usr/local/bin to the front of PATH
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.paths b/.paths
@@ -20,13 +20,13 @@ path_append() {
# set PATH so it includes user's private bin if it exists
path_prepend "$HOME/bin"
-# Push /usr/local/bin to the front of PATH
-path_prepend "/usr/local/bin"
-path_prepend "/usr/homebrew/opt/coreutils/libexec/gnubin"
-
# Go development
path_prepend "/usr/local/Cellar/go/1.2/libexec/bin"
# Chromium and Dart development
path_prepend "$HOME/src/depot_tools"
path_prepend "$DART_SDK/bin"
+
+# Push /usr/local/bin to the front of PATH
+path_prepend "/usr/local/bin"
+path_prepend "/usr/homebrew/opt/coreutils/libexec/gnubin"