Unverified Commit e6122828 authored by Wenbing Li's avatar Wenbing Li Committed by GitHub
Browse files

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
parent 389de86c
...@@ -83,7 +83,7 @@ function _gradle_arguments() { ...@@ -83,7 +83,7 @@ function _gradle_arguments() {
'--quiet[Log errors only]' \ '--quiet[Log errors only]' \
'--recompile-scripts[Forces scripts to be recompiled, bypassing caching]' \ '--recompile-scripts[Forces scripts to be recompiled, bypassing caching]' \
'--refresh-dependencies[Refresh the state of dependencies]' \ '--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]' \ '--settings-file[Specifies the settings file]' \
'--stacktrace[Print out the stacktrace also for user exceptions]' \ '--stacktrace[Print out the stacktrace also for user exceptions]' \
'--status[Print Gradle Daemon status]' \ '--status[Print Gradle Daemon status]' \
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment