diff --git a/bin/autojump.sh b/bin/autojump.sh index 3a25edf..0ddff47 100644 --- a/bin/autojump.sh +++ b/bin/autojump.sh @@ -14,14 +14,13 @@ fi # prevent circular loop for sh shells if [ "${shell}" = "sh" ]; then - return 0 + return 0 # check local install elif [ -s ~/.autojump/share/autojump/autojump.${shell} ]; then - source ~/.autojump/share/autojump/autojump.${shell} + source ~/.autojump/share/autojump/autojump.${shell} # check global install elif [ -s /usr/local/share/autojump/autojump.${shell} ]; then - source /usr/local/share/autojump/autojump.${shell} - + source /usr/local/share/autojump/autojump.${shell} fi