0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00

Complain when no autojump script was found

This commit is contained in:
Marc Cornellà 2019-04-09 19:41:59 +02:00
parent fd105b6e52
commit b4c06f2b50

View file

@ -28,7 +28,12 @@ done
# if no path found, try Homebrew # if no path found, try Homebrew
if (( ! found && $+commands[brew] )); then if (( ! found && $+commands[brew] )); then
file=$(brew --prefix)/etc/profile.d/autojump.sh file=$(brew --prefix)/etc/profile.d/autojump.sh
[[ -f "$file" ]] && source "$file" if [[ -f "$file" ]]; then
source "$file"
found=1
fi
fi fi
(( ! found )) && echo '[oh-my-zsh] autojump script not found'
unset autojump_paths file found unset autojump_paths file found