1
0
mirror of https://github.com/wting/autojump synced 2025-06-07 18:04:09 +00:00
This commit is contained in:
Anderson Bravalheri 2025-03-03 02:00:57 +00:00 committed by GitHub
commit b538db6dbe
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -18,9 +18,9 @@ if [ "${shell}" = "sh" ]; then
# check local install # check local install
elif [ -s ~/.autojump/share/autojump/autojump.${shell} ]; then elif [ -s ~/.autojump/share/autojump/autojump.${shell} ]; then
source ~/.autojump/share/autojump/autojump.${shell} . ~/.autojump/share/autojump/autojump.${shell}
# check global install # check global install
elif [ -s /usr/local/share/autojump/autojump.${shell} ]; then elif [ -s /usr/local/share/autojump/autojump.${shell} ]; then
source /usr/local/share/autojump/autojump.${shell} . /usr/local/share/autojump/autojump.${shell}
fi fi