Skip to content

Commit

Permalink
Merge pull request #309 from halilim/standardize-brew-command-check
Browse files Browse the repository at this point in the history
Disable echo of command check.
  • Loading branch information
wting committed Aug 21, 2014
2 parents 23be6ab + 7d51781 commit 2480647
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/autojump.zsh
Expand Up @@ -8,7 +8,7 @@ fi


# set homebrew installation paths
if command -v brew && [[ -d "$(brew --prefix)/share/zsh/site-functions" ]]; then
if command -v brew > /dev/null 2>&1 && [[ -d "$(brew --prefix)/share/zsh/site-functions" ]]; then
fpath=("$(brew --prefix)/share/zsh/site-functions" ${fpath})
fi

Expand Down

0 comments on commit 2480647

Please sign in to comment.