modified, per sorin-ionescu's comments, now matches style as seen in node module
This commit is contained in:
parent
56e6dad913
commit
9bba4188b1
1 changed files with 2 additions and 2 deletions
|
@ -13,8 +13,8 @@ if [[ -s '/etc/zsh_command_not_found' ]]; then
|
|||
elif [[ -s '/usr/share/doc/pkgfile/command-not-found.zsh' ]]; then
|
||||
source '/usr/share/doc/pkgfile/command-not-found.zsh'
|
||||
# Load command-not-found on Mac OS X with https://github.com/bfontaine/homebrew-command-not-found installed
|
||||
elif [[ $(type -f brew) ]] && [[ -s ${HANDLER=$(brew --prefix)/Library/Taps/bfontaine/homebrew-command-not-found/handler.sh} ]]; then
|
||||
source "${HANDLER}"
|
||||
elif (( $+commands[brew] )) && [[ -s "$(brew --prefix)/Library/Taps/bfontaine/homebrew-command-not-found/handler.sh" ]]; then
|
||||
source "$(brew --prefix)/Library/Taps/bfontaine/homebrew-command-not-found/handler.sh"
|
||||
# Return if requirements are not found.
|
||||
else
|
||||
return 1
|
||||
|
|
Loading…
Add table
Reference in a new issue