Merge pull request #692 from syohex/syohex/update-kitchen
kitchen: fix regexp which collects subcommands
This commit is contained in:
commit
a264c2d123
|
@ -35,6 +35,7 @@
|
||||||
# -------
|
# -------
|
||||||
#
|
#
|
||||||
# * Peter Eisentraut (https://github.com/petere)
|
# * Peter Eisentraut (https://github.com/petere)
|
||||||
|
# * Shohei YOSHIDA (https://github.com/syohex)
|
||||||
#
|
#
|
||||||
# ------------------------------------------------------------------------------
|
# ------------------------------------------------------------------------------
|
||||||
|
|
||||||
|
@ -67,7 +68,7 @@ _kitchen() {
|
||||||
_kitchen_commands() {
|
_kitchen_commands() {
|
||||||
local commands
|
local commands
|
||||||
|
|
||||||
commands=("${(@f)$(_call_program commands $service help | sed -n 's/^ kitchen \([[:alpha:]]*\) [ [].*# \(.*\)$/\1:\2/p')}")
|
commands=("${(@f)$(_call_program commands $service help | sed -n 's/^ kitchen \([[:alpha:]]*\) .*# \(.*\)$/\1:\2/p')}")
|
||||||
_describe -t commands 'kitchen commands' commands
|
_describe -t commands 'kitchen commands' commands
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue