Skip to content

Commit

Permalink
Merge pull request #80802 from dtaniwaki/fix-broken-completion
Browse files Browse the repository at this point in the history
Fix unexpected line end in override flags
  • Loading branch information
k8s-ci-robot committed Jul 31, 2019
2 parents 873e1fc + 707f1a2 commit c91761d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/kubectl/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ __kubectl_override_flags()
done
for var in "${__kubectl_override_flag_list[@]##*-}"; do
if eval "test -n \"\$${var}\""; then
eval "echo \${${var}}"
eval "echo -n \${${var}}' '"
fi
done
}
Expand Down

0 comments on commit c91761d

Please sign in to comment.