From 53683525d2e8b697b89c3f5a050476f2c1a3f0e2 Mon Sep 17 00:00:00 2001 From: William Ting Date: Sun, 25 Jan 2015 16:04:36 +0900 Subject: [PATCH] Minor cleanup. --- bin/autojump.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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