8ac5e011d6
GitOrigin-RevId: 2c3273caa153ee8eb5786bc8141b85b859e7efd7
10 lines
343 B
Bash
10 lines
343 B
Bash
# credits:
|
|
# https://godoc.org/github.com/jessevdk/go-flags#hdr-Completion
|
|
# https://github.com/concourse/concourse/issues/1309#issuecomment-452893900
|
|
_fly_compl() {
|
|
args=("${COMP_WORDS[@]:1:$COMP_CWORD}")
|
|
local IFS=$'\n'
|
|
COMPREPLY=($(GO_FLAGS_COMPLETION=1 ${COMP_WORDS[0]} "${args[@]}"))
|
|
return 0
|
|
}
|
|
complete -F _fly_compl fly
|