diff options
author | Joey Hess <joey@kitenet.net> | 2012-12-10 15:11:25 -0400 |
---|---|---|
committer | Joey Hess <joey@kitenet.net> | 2012-12-10 15:11:25 -0400 |
commit | f9c0ae102f4d8ec08104b2a9b6238ef518bb8549 (patch) | |
tree | ac19f86f020e306857ece30e9461ef347caf26db /standalone/osx | |
parent | 469c76acddcd972da018542e7791a74c5a40c935 (diff) |
fix PATH
Diffstat (limited to 'standalone/osx')
-rwxr-xr-x | standalone/osx/git-annex.app/Contents/MacOS/runshell | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/standalone/osx/git-annex.app/Contents/MacOS/runshell b/standalone/osx/git-annex.app/Contents/MacOS/runshell index 03b6befdf..40c1be615 100755 --- a/standalone/osx/git-annex.app/Contents/MacOS/runshell +++ b/standalone/osx/git-annex.app/Contents/MacOS/runshell @@ -43,7 +43,7 @@ fi # system binaries. ORIG_PATH="$PATH" export ORIG_PATH -PATH=$base/bin:$PATH +PATH=$base:$PATH export PATH ORIG_GIT_EXEC_PATH="$GIT_EXEC_PATH" |