mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-06-10 06:48:03 +02:00
github #103: fix completion for zpool upgrade
This is done by simply adding a missing backslash to the code.
Fixes: 85bf9740a0
("49668: update zfs completion")
Signed-off-by: Christian Heusel <christian@heusel.eu>
This commit is contained in:
parent
20739b5458
commit
5fd8cccf54
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
||||||
|
2023-10-24 Matthew Martin <phy1729@gmail.com>
|
||||||
|
|
||||||
|
* github #103: Christian Heusel: Completion/Unix/Command/_zfs: fix
|
||||||
|
completion for zpool upgrade
|
||||||
|
|
||||||
2023-10-16 Mikael Magnusson <mikachu@gmail.com>
|
2023-10-16 Mikael Magnusson <mikachu@gmail.com>
|
||||||
|
|
||||||
* 52056: Completion/Unix/Command/_sccs: _sccs: don't handle
|
* 52056: Completion/Unix/Command/_sccs: _sccs: don't handle
|
||||||
|
|
|
@ -1269,7 +1269,7 @@ case $service:$words[1] in
|
||||||
|
|
||||||
zpool:upgrade)
|
zpool:upgrade)
|
||||||
_arguments -A "-*" -S \
|
_arguments -A "-*" -S \
|
||||||
'(- *)-v[display ZFS versions and descriptions]'
|
'(- *)-v[display ZFS versions and descriptions]' \
|
||||||
"(-v)-V+[upgrade to given version]:version" \
|
"(-v)-V+[upgrade to given version]:version" \
|
||||||
'(-v *)-a[upgrade all pools]' \
|
'(-v *)-a[upgrade all pools]' \
|
||||||
'(-a -v)*:pool:_zfs_pool'
|
'(-a -v)*:pool:_zfs_pool'
|
||||||
|
|
Loading…
Reference in a new issue