Merge pull request #7307 from finkr/fix-completion7304

fix(comp): tail cannot open +2 for reading
pull/7320/head
Marc Khouzam 5 years ago committed by GitHub
commit 6c604a400e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -69,7 +69,7 @@ __helm_override_flags_to_kubectl_flags()
__helm_get_repos() __helm_get_repos()
{ {
eval $(__helm_binary_name) repo list 2>/dev/null | \tail +2 | \cut -f1 eval $(__helm_binary_name) repo list 2>/dev/null | \tail -n +2 | \cut -f1
} }
__helm_get_contexts() __helm_get_contexts()
@ -236,7 +236,7 @@ __helm_list_plugins()
__helm_debug "${FUNCNAME[0]}: c is $c words[c] is ${words[c]}" __helm_debug "${FUNCNAME[0]}: c is $c words[c] is ${words[c]}"
local out local out
# Use eval in case helm_binary_name contains a variable (e.g., $HOME/bin/h3) # Use eval in case helm_binary_name contains a variable (e.g., $HOME/bin/h3)
if out=$(eval $(__helm_binary_name) plugin list 2>/dev/null | \tail +2 | \cut -f1); then if out=$(eval $(__helm_binary_name) plugin list 2>/dev/null | \tail -n +2 | \cut -f1); then
COMPREPLY=( $( compgen -W "${out[*]}" -- "$cur" ) ) COMPREPLY=( $( compgen -W "${out[*]}" -- "$cur" ) )
fi fi
} }

Loading…
Cancel
Save