Skip to content

Commit ff47ecd

Browse files
author
Ira Abramov
committed
some last readability and logic fixes. hopefully the last round.
1 parent 01f30a5 commit ff47ecd

File tree

1 file changed

+28
-10
lines changed

1 file changed

+28
-10
lines changed

completion/available/gradle.completion.bash

+28-10
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,11 @@ __gradle-generate-script-cache() {
7070
if [[ ! $(find "$cache_dir/$cache_name" -mmin "-$cache_ttl_mins" 2> /dev/null) ]]; then
7171
# Cache all Gradle scripts
7272
local gradle_build_scripts
73-
gradle_build_scripts=$(find "$project_root_dir" -type f -name "*.gradle" -o -name "*.gradle.kts" 2> /dev/null | grep -E -v "$script_exclude_pattern")
73+
gradle_build_scripts=$(
74+
find "$project_root_dir" -type f \
75+
\( -name "*.gradle" -or -name "*.gradle.kts" \) 2> /dev/null \
76+
| grep -E -v "$script_exclude_pattern"
77+
)
7478
printf "%s\n" "${gradle_build_scripts[@]}" > "$cache_dir/$cache_name"
7579
fi
7680
}
@@ -118,7 +122,9 @@ __gradle-long-options() {
118122
--version - Prints Gradle version info
119123
--warn - Log warnings and errors only"
120124
COMPREPLY=()
121-
while IFS='' read -r line; do COMPREPLY+=("$line"); done < <(compgen -W "$args" -- "${COMP_WORDS[COMP_CWORD]}")
125+
while IFS='' read -r line; do
126+
COMPREPLY+=("$line")
127+
done < <(compgen -W "$args" -- "${COMP_WORDS[COMP_CWORD]}")
122128
}
123129

124130
__gradle-properties() {
@@ -134,7 +140,9 @@ __gradle-properties() {
134140
-Dorg.gradle.parallel.intra= - Set true to enable intra-project parallel builds (incubating)
135141
-Dorg.gradle.workers.max= - Set the number of workers Gradle is allowed to use"
136142
COMPREPLY=()
137-
while IFS='' read -r line; do COMPREPLY+=("$line"); done < <(compgen -W "$args" -- "${COMP_WORDS[COMP_CWORD]}")
143+
while IFS='' read -r line; do
144+
COMPREPLY+=("$line")
145+
done < <(compgen -W "$args" -- "${COMP_WORDS[COMP_CWORD]}")
138146
return 0
139147
}
140148

@@ -214,7 +222,8 @@ __gradle-generate-tasks-cache() {
214222
local -a implicit_tasks
215223
while IFS='' read -r line; do
216224
implicit_tasks+=("$line")
217-
done < <(comm -23 <(printf "%s\n" "${subproject_tasks[@]}" | sort) <(printf "%s\n" "${root_tasks[@]}" | sort))
225+
done < <(comm -23 <(printf "%s\n" "${subproject_tasks[@]}" | sort) \
226+
<(printf "%s\n" "${root_tasks[@]}" | sort))
218227
for task in "${implicit_tasks[@]}"; do
219228
gradle_all_tasks+=("$task")
220229
done
@@ -274,18 +283,25 @@ _gradle() {
274283
cached_checksum="$(cat "$cache_dir/$cache_name.md5")"
275284
local -a cached_tasks
276285
if [[ -z $cur ]]; then
277-
while IFS='' read -r line; do cached_tasks+=("$line"); done < "$cache_dir/$cached_checksum"
286+
while IFS='' read -r line; do
287+
cached_tasks+=("$line")
288+
done < "$cache_dir/$cached_checksum"
278289
else
279-
while IFS='' read -r line; do cached_tasks+=("$line"); done < <(grep "^$cur" "$cache_dir/$cached_checksum")
290+
while IFS='' read -r line; do
291+
cached_tasks+=("$line")
292+
done < <(grep "^$cur" "$cache_dir/$cached_checksum")
280293
fi
281-
while IFS='' read -r line; do COMPREPLY+=("$line"); done < <(compgen -W "${cached_tasks[*]}" -- "$cur")
294+
while IFS='' read -r line; do
295+
COMPREPLY+=("$line")
296+
done < <(compgen -W "${cached_tasks[*]}" -- "$cur")
282297
else
283298
__gradle-notify-tasks-cache-build
284299
fi
285300

286301
# Regenerate tasks cache in the background
287-
if [[ $gradle_files_checksum != "$(cat "$cache_dir/$cache_name.md5")" || ! -f "$cache_dir/$gradle_files_checksum" ]]; then
288-
"$(__gradle-generate-tasks-cache 1>&2 2> /dev/null &)"
302+
if [[ $gradle_files_checksum != "$(cat "$cache_dir/$cache_name.md5")" ||
303+
! -f "$cache_dir/$gradle_files_checksum" ]]; then
304+
__gradle-generate-tasks-cache &> /dev/null &
289305
fi
290306
else
291307
# Default tasks available outside Gradle projects
@@ -302,7 +318,9 @@ properties - Displays the properties of root project.
302318
tasks - Displays the tasks runnable from root project.
303319
wrapper - Generates Gradle wrapper files."
304320
COMPREPLY=()
305-
while IFS='' read -r line; do COMPREPLY+=("$line"); done < <(compgen -W "${args}" -- "${cur}")
321+
while IFS='' read -r line; do
322+
COMPREPLY+=("$line")
323+
done < <(compgen -W "${args}" -- "${cur}")
306324
fi
307325
fi
308326

0 commit comments

Comments
 (0)