diff options
| author | Oliver Kiddle <okiddle@yahoo.co.uk> | 2018-08-28 17:37:14 +0200 |
|---|---|---|
| committer | Oliver Kiddle <okiddle@yahoo.co.uk> | 2018-08-28 17:37:14 +0200 |
| commit | e104d0a6fe7b17c72d74b43fd45e03387f0535e2 (patch) | |
| tree | 88ea24ff388682798924497bff2091595132d682 /Completion/Linux | |
| parent | unposted: completion for argument to strings -s was missing (diff) | |
| download | zsh-e104d0a6fe7b17c72d74b43fd45e03387f0535e2.tar zsh-e104d0a6fe7b17c72d74b43fd45e03387f0535e2.tar.gz zsh-e104d0a6fe7b17c72d74b43fd45e03387f0535e2.tar.bz2 zsh-e104d0a6fe7b17c72d74b43fd45e03387f0535e2.tar.lz zsh-e104d0a6fe7b17c72d74b43fd45e03387f0535e2.tar.xz zsh-e104d0a6fe7b17c72d74b43fd45e03387f0535e2.tar.zst zsh-e104d0a6fe7b17c72d74b43fd45e03387f0535e2.zip | |
unposted: correct completion argument order for dkms
Diffstat (limited to 'Completion/Linux')
| -rw-r--r-- | Completion/Linux/Command/_dkms | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Completion/Linux/Command/_dkms b/Completion/Linux/Command/_dkms index 7ea34aa2e..a0a666e33 100644 --- a/Completion/Linux/Command/_dkms +++ b/Completion/Linux/Command/_dkms @@ -122,13 +122,13 @@ case $cmd in ;| add) args+=( - '2:path:_directories' - '3:tarball:_files -g "*.tar(-.)"' + '3:path:_directories' + '4:tarball:_files -g "*.tar(-.)"' ) ;; install) args+=( - '2:rpm file:_files -g "*.rpm(-.)"' + '3:rpm file:_files -g "*.rpm(-.)"' ) ;; esac |
