diff options
| author | Shohei Yoshida <syohex@gmail.com> | 2023-09-23 12:13:36 +0900 |
|---|---|---|
| committer | Oliver Kiddle <opk@zsh.org> | 2023-11-01 00:31:10 +0100 |
| commit | 8ebbf25a71ec3e194616d2d10bef629efa266bee (patch) | |
| tree | 6cac13b2e132e07a16d98502809f82986de29ea7 /Completion/Unix | |
| parent | github #102: Ensure todo.sh completion uses builtin commands (diff) | |
| download | zsh-8ebbf25a71ec3e194616d2d10bef629efa266bee.tar zsh-8ebbf25a71ec3e194616d2d10bef629efa266bee.tar.gz zsh-8ebbf25a71ec3e194616d2d10bef629efa266bee.tar.bz2 zsh-8ebbf25a71ec3e194616d2d10bef629efa266bee.tar.lz zsh-8ebbf25a71ec3e194616d2d10bef629efa266bee.tar.xz zsh-8ebbf25a71ec3e194616d2d10bef629efa266bee.tar.zst zsh-8ebbf25a71ec3e194616d2d10bef629efa266bee.zip | |
52179: Fix gradlew completion when it isn't in PATH
Diffstat (limited to 'Completion/Unix')
| -rw-r--r-- | Completion/Unix/Command/_gradle | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Completion/Unix/Command/_gradle b/Completion/Unix/Command/_gradle index c1f7c05ee..280aa243f 100644 --- a/Completion/Unix/Command/_gradle +++ b/Completion/Unix/Command/_gradle @@ -92,7 +92,7 @@ if [[ $state == task && ! -prefix - ]]; then zle -R "Generating cache from $gradle_buildfile" # Run gradle/gradlew and retrieve possible tasks. - for outputline in ${(f)"$($service --build-file $gradle_buildfile -q tasks --all)"}; do + for outputline in ${(f)"$($words[1] --build-file $gradle_buildfile -q tasks --all)"}; do # Tasks and subprojects each start with a lowercase letter, but whereas tasks are in camelCase, each # subproject consists of one or more sections of kebab-case, with each section ending in a ':'. |
