Escape \which just in case someone else overrides it with an alias :)

This commit is contained in:
Nathan Broadbent
2012-08-13 18:51:42 +12:00
parent b8c0ba69de
commit eab3957a11

View File

@@ -12,7 +12,7 @@ unalias git > /dev/null 2>&1
unset -f git > /dev/null 2>&1
# Use the full path to git to avoid infinite loop with git function
export _git_cmd="$(which git)"
export _git_cmd="$(\which git)"
# Wrap git with the 'hub' github wrapper, if installed (https://github.com/defunkt/hub)
if type hub > /dev/null 2>&1; then export _git_cmd="hub"; fi