1
0
mirror of https://github.com/wting/autojump synced 2026-03-02 03:49:26 +00:00

Consolidate source calls to use autojump.sh. Modify autojump.sh to support

custom installations.
This commit is contained in:
William Ting
2012-11-22 16:33:05 -06:00
parent 44c066d21d
commit 8b13949173
2 changed files with 13 additions and 2 deletions

View File

@@ -10,4 +10,8 @@ if [ -s ~/.autojump/etc/profile.d/autojump.${shell} ]; then
elif [ -s /etc/profile.d/autojump.${shell} ]; then
source /etc/profile.d/autojump.${shell}
# check custom install locations (modified by Homebrew or using --destdir option)
elif [ -s custom_install/autojump.${shell} ]; then
source custom_install/autojump.${shell}
fi