1
0
Fork 0

modified, per sorin-ionescu's comments, now matches style as seen in node module

pull/847/head
Alex Gray 10 years ago
parent 56e6dad913
commit 9bba4188b1

@ -13,8 +13,8 @@ if [[ -s '/etc/zsh_command_not_found' ]]; then
elif [[ -s '/usr/share/doc/pkgfile/command-not-found.zsh' ]]; then elif [[ -s '/usr/share/doc/pkgfile/command-not-found.zsh' ]]; then
source '/usr/share/doc/pkgfile/command-not-found.zsh' 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 # 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 elif (( $+commands[brew] )) && [[ -s "$(brew --prefix)/Library/Taps/bfontaine/homebrew-command-not-found/handler.sh" ]]; then
source "${HANDLER}" source "$(brew --prefix)/Library/Taps/bfontaine/homebrew-command-not-found/handler.sh"
# Return if requirements are not found. # Return if requirements are not found.
else else
return 1 return 1

Loading…
Cancel
Save