diff options
author | Felipe Sateler <fsateler@debian.org> | 2019-02-20 21:24:33 -0300 |
---|---|---|
committer | Felipe Sateler <fsateler@debian.org> | 2019-02-20 21:24:33 -0300 |
commit | 7c20daf69c4411979b7f8902f3601d1cdc56cc07 (patch) | |
tree | d59b9989ce55ed23693e80974d94c856f1c2c8b1 /shell-completion/zsh/_bootctl | |
parent | 6e866b331d7cd4a5e0759dd160dea6edabd3678e (diff) | |
download | systemd-7c20daf69c4411979b7f8902f3601d1cdc56cc07.tar.gz |
New upstream version 241upstream/241
Diffstat (limited to 'shell-completion/zsh/_bootctl')
-rw-r--r-- | shell-completion/zsh/_bootctl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell-completion/zsh/_bootctl b/shell-completion/zsh/_bootctl index f107005814..0ffef94e4a 100644 --- a/shell-completion/zsh/_bootctl +++ b/shell-completion/zsh/_bootctl @@ -1,7 +1,7 @@ #compdef bootctl # SPDX-License-Identifier: LGPL-2.1+ -(( $+functions[_bootctl_command] )) || _bootctl_command() +(( $+functions[_bootctl_commands] )) || _bootctl_commands() { local -a _bootctl_cmds _bootctl_cmds=( @@ -28,4 +28,4 @@ _arguments \ '--version[Prints a short version string and exits.]' \ '--path=[Path to the EFI System Partition (ESP)]:path:_directories' \ '--no-variables[Do not touch EFI variables]' \ - '*::bootctl command:_bootctl_command' + '*::bootctl command:_bootctl_commands' |