Skip to content

Commit

Permalink
Fix completion for Gradle properties using bash
Browse files Browse the repository at this point in the history
  • Loading branch information
eriwen committed Feb 19, 2019
1 parent 929ef2e commit 72c547f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gradle-completion.bash
Original file line number Diff line number Diff line change
Expand Up @@ -147,7 +147,7 @@ __gradle-properties() {
-Dorg.gradle.priority= - Set priority for Gradle worker processes (low normal)
-Dorg.gradle.warning.mode= - Set types of warnings to log (all summary none)
-Dorg.gradle.workers.max= - Set the number of workers Gradle is allowed to use"
COMPREPLY=( $(compgen -W "$args" -- "$cur}") )
COMPREPLY=( $(compgen -W "$args" -- "$cur") )
return 0
}

Expand Down

0 comments on commit 72c547f

Please sign in to comment.