mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-12 08:50:08 +00:00
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
This commit is contained in:
parent
389de86cf5
commit
e61228282a
1 changed files with 1 additions and 1 deletions
|
@ -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]' \
|
||||
|
|
Loading…
Reference in a new issue