From 2eab781b35019ce452738012092f9df4ce9fdf00 Mon Sep 17 00:00:00 2001 From: Frank Lin PIAT Date: Sat, 28 Dec 2019 22:34:21 +0100 Subject: [PATCH] fix(comp): tail cannot open +2 for reading Signed-off-by: Frank Lin PIAT --- cmd/helm/root.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/helm/root.go b/cmd/helm/root.go index 443d718d5..3405299fd 100644 --- a/cmd/helm/root.go +++ b/cmd/helm/root.go @@ -69,7 +69,7 @@ __helm_override_flags_to_kubectl_flags() __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() @@ -236,7 +236,7 @@ __helm_list_plugins() __helm_debug "${FUNCNAME[0]}: c is $c words[c] is ${words[c]}" local out # 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" ) ) fi }