@@ -70,7 +70,11 @@ __gradle-generate-script-cache() {
70
70
if [[ ! $( find " $cache_dir /$cache_name " -mmin " -$cache_ttl_mins " 2> /dev/null) ]]; then
71
71
# Cache all Gradle scripts
72
72
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
+ )
74
78
printf " %s\n" " ${gradle_build_scripts[@]} " > " $cache_dir /$cache_name "
75
79
fi
76
80
}
@@ -118,7 +122,9 @@ __gradle-long-options() {
118
122
--version - Prints Gradle version info
119
123
--warn - Log warnings and errors only"
120
124
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]} " )
122
128
}
123
129
124
130
__gradle-properties () {
@@ -134,7 +140,9 @@ __gradle-properties() {
134
140
-Dorg.gradle.parallel.intra= - Set true to enable intra-project parallel builds (incubating)
135
141
-Dorg.gradle.workers.max= - Set the number of workers Gradle is allowed to use"
136
142
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]} " )
138
146
return 0
139
147
}
140
148
@@ -214,7 +222,8 @@ __gradle-generate-tasks-cache() {
214
222
local -a implicit_tasks
215
223
while IFS=' ' read -r line; do
216
224
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) )
218
227
for task in " ${implicit_tasks[@]} " ; do
219
228
gradle_all_tasks+=(" $task " )
220
229
done
@@ -274,18 +283,25 @@ _gradle() {
274
283
cached_checksum=" $( cat " $cache_dir /$cache_name .md5" ) "
275
284
local -a cached_tasks
276
285
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 "
278
289
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 " )
280
293
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 " )
282
297
else
283
298
__gradle-notify-tasks-cache-build
284
299
fi
285
300
286
301
# 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 &
289
305
fi
290
306
else
291
307
# Default tasks available outside Gradle projects
@@ -302,7 +318,9 @@ properties - Displays the properties of root project.
302
318
tasks - Displays the tasks runnable from root project.
303
319
wrapper - Generates Gradle wrapper files."
304
320
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} " )
306
324
fi
307
325
fi
308
326
0 commit comments