mirror of https://github.com/spf13/cobra.git
Merge pull request #104 from eparis/minor-bash-cleanup
Clean up minor bash complaints from shellcheck.net
This commit is contained in:
commit
787b737b48
|
@ -22,7 +22,7 @@ func preamble(out *bytes.Buffer) {
|
||||||
__debug()
|
__debug()
|
||||||
{
|
{
|
||||||
if [[ -n ${BASH_COMP_DEBUG_FILE} ]]; then
|
if [[ -n ${BASH_COMP_DEBUG_FILE} ]]; then
|
||||||
echo "$*" >> ${BASH_COMP_DEBUG_FILE}
|
echo "$*" >> "${BASH_COMP_DEBUG_FILE}"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -173,10 +173,9 @@ __handle_word()
|
||||||
func postscript(out *bytes.Buffer, name string) {
|
func postscript(out *bytes.Buffer, name string) {
|
||||||
fmt.Fprintf(out, "__start_%s()\n", name)
|
fmt.Fprintf(out, "__start_%s()\n", name)
|
||||||
fmt.Fprintf(out, `{
|
fmt.Fprintf(out, `{
|
||||||
local cur prev words cword split
|
local cur prev words cword
|
||||||
_init_completion -s || return
|
_init_completion -s || return
|
||||||
|
|
||||||
local completions_func
|
|
||||||
local c=0
|
local c=0
|
||||||
local flags=()
|
local flags=()
|
||||||
local two_word_flags=()
|
local two_word_flags=()
|
||||||
|
|
Loading…
Reference in New Issue