From a0d61b4c373f6b977314f7ebe53f6236798151e9 Mon Sep 17 00:00:00 2001 From: Junegunn Choi Date: Mon, 9 Oct 2023 10:00:55 +0900 Subject: [PATCH] [install] Remove redundant interactiveness check Related #3449 /cc @calestyo --- install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install b/install index 5ac191b0..744cc7ab 100755 --- a/install +++ b/install @@ -245,7 +245,7 @@ for shell in $shells; do src=${prefix_expand}.${shell} echo -n "Generate $src ... " - fzf_completion="[[ \$- == *i* ]] && source \"$fzf_base/shell/completion.${shell}\" 2> /dev/null" + fzf_completion="source \"$fzf_base/shell/completion.${shell}\"" if [ $auto_completion -eq 0 ]; then fzf_completion="# $fzf_completion" fi