diff options
author | Wenbing Li <wbingli@gmail.com> | 2020-02-28 11:35:19 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-28 20:35:19 +0100 |
commit | e61228282acced09d9b245b3fc337fd079dc26a8 (patch) | |
tree | cbc323af23a2c56e60eb4de318fe16c9bb7cac27 | |
parent | 389de86cf5e4976bdda4259b27987c44d401ae96 (diff) | |
download | zsh-e61228282acced09d9b245b3fc337fd079dc26a8.tar.gz zsh-e61228282acced09d9b245b3fc337fd079dc26a8.tar.bz2 zsh-e61228282acced09d9b245b3fc337fd079dc26a8.zip |
gradle: fix command option name in completion (#6586)
It should be `--rerun-tasks`, the original one miss a 's' at the end.
See https://docs.gradle.org/current/userguide/command_line_interface.html
-rw-r--r-- | plugins/gradle/gradle.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gradle/gradle.plugin.zsh b/plugins/gradle/gradle.plugin.zsh index c651b91ca..bba6ad4e9 100644 --- a/plugins/gradle/gradle.plugin.zsh +++ b/plugins/gradle/gradle.plugin.zsh @@ -83,7 +83,7 @@ function _gradle_arguments() { '--quiet[Log errors only]' \ '--recompile-scripts[Forces scripts to be recompiled, bypassing caching]' \ '--refresh-dependencies[Refresh the state of dependencies]' \ - '--rerun-task[Specifies that any task optimization is ignored]' \ + '--rerun-tasks[Specifies that any task optimization is ignored]' \ '--settings-file[Specifies the settings file]' \ '--stacktrace[Print out the stacktrace also for user exceptions]' \ '--status[Print Gradle Daemon status]' \ |