diff options
| author | Shohei YOSHIDA <syohex@gmail.com> | 2026-03-08 21:53:05 +0900 |
|---|---|---|
| committer | Shohei YOSHIDA <syohex@gmail.com> | 2026-03-08 21:53:05 +0900 |
| commit | 6a6e4a9d5f792aa8e202936a944a4887132bb509 (patch) | |
| tree | 0eff271118e0289f8204fade6859a07e1f198b10 /src/_phing | |
| parent | fix pixz completion (diff) | |
| download | zsh-completions-6a6e4a9d5f792aa8e202936a944a4887132bb509.tar zsh-completions-6a6e4a9d5f792aa8e202936a944a4887132bb509.tar.gz zsh-completions-6a6e4a9d5f792aa8e202936a944a4887132bb509.tar.bz2 zsh-completions-6a6e4a9d5f792aa8e202936a944a4887132bb509.tar.lz zsh-completions-6a6e4a9d5f792aa8e202936a944a4887132bb509.tar.xz zsh-completions-6a6e4a9d5f792aa8e202936a944a4887132bb509.tar.zst zsh-completions-6a6e4a9d5f792aa8e202936a944a4887132bb509.zip | |
Fix phing completion
- remove duplicate options
Diffstat (limited to 'src/_phing')
| -rw-r--r-- | src/_phing | 3 |
1 files changed, 1 insertions, 2 deletions
@@ -41,7 +41,6 @@ _phing() { # Follow https://www.phing.info/guide/chunkhtml/sec.commandlineargs.html for more information _arguments -C \ '(-h -help)'{-h,-help}'[display the help screen]' \ - '(-v -version)'{-v,-version}'[print version information and exit]' \ '(-l -list)'{-l,-list}'[list all available targets in buildfile]' \ '(-i -init)'{-i,-init}'[generates an initial buildfile]:file:_files' \ '(-q -quiet)'{-q,-quiet}'[quiet operation, no output at all]' \ @@ -63,7 +62,7 @@ _phing() { '-propertyfileoverride[values in property file override existing values]' \ '-find[search for buildfile towards the root of the filesystem and use it]:file:_files' \ '-inputhandler[the class to use to handle user input]:class' \ - '(- *)'{-v,-version}'[show version]' \ + '(- *)'{-v,-version}'[show version and exit]' \ '1: :->targets' \ '*:: :->args' \ && ret=0 |
