Prevent nushell source contamination in install shell loop (#4812)

This commit is contained in:
Copilot
2026-05-28 10:26:43 +09:00
committed by GitHub
parent 845752f305
commit 5ef8dea36e
+1 -1
View File
@@ -252,10 +252,10 @@ fi
echo
for shell in $shells; do
[[ $shell == nushell ]] && continue
fzf_completion="source \"$fzf_base/shell/completion.${shell}\""
fzf_key_bindings="source \"$fzf_base/shell/key-bindings.${shell}\""
[[ $shell == fish ]] && continue
[[ $shell == nushell ]] && continue
src=${prefix_expand}.${shell}
echo -n "Generate $src ... "