From 3b91467941d2a7f00181070e65a36ebdc30a65ee Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Tue, 12 May 2015 22:54:48 +0900 Subject: [PATCH] Suppress error message when loading completion.{zsh,bash} Temporary workaround for https://github.com/Homebrew/homebrew/issues/39669 --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index efe9b6a2..ab4cb21d 100755 --- a/install +++ b/install @@ -176,7 +176,7 @@ for shell in bash zsh; do echo -n "Generate ~/.fzf.$shell ... " src=~/.fzf.${shell} - fzf_completion="[[ \$- =~ i ]] && source \"$fzf_base/shell/completion.${shell}\"" + fzf_completion="[[ \$- =~ i ]] && source \"$fzf_base/shell/completion.${shell}\" 2> /dev/null" if [ $auto_completion -ne 0 ]; then fzf_completion="# $fzf_completion" fi