File tree 2 files changed +4
-6
lines changed
2 files changed +4
-6
lines changed Original file line number Diff line number Diff line change 53
53
# Get time of last fab cache file modification as seconds since Epoch
54
54
#
55
55
function __fab_chache_mtime() {
56
- # shellcheck disable=SC2090
57
56
" ${__FAB_COMPLETION_MTIME_COMMAND[@]} " \
58
57
$FAB_COMPLETION_CACHED_TASKS_FILENAME | xargs -n 1 expr
59
58
}
@@ -64,11 +63,10 @@ function __fab_chache_mtime() {
64
63
function __fab_fabfile_mtime() {
65
64
local f=" fabfile"
66
65
if [[ -e " $f .py" ]]; then
67
- # shellcheck disable=SC2090
68
66
" ${__FAB_COMPLETION_MTIME_COMMAND[@]} " " $f .py" | xargs -n 1 expr
69
67
else
70
68
# Suppose that it's a fabfile dir
71
- # shellcheck disable=SC2090, SC2038
69
+ # shellcheck disable=SC2038
72
70
find " $f " /* .py -exec " ${__FAB_COMPLETION_MTIME_COMMAND[@]} " {} + \
73
71
| xargs -n 1 expr | sort -n -r | head -1
74
72
fi
Original file line number Diff line number Diff line change @@ -185,10 +185,10 @@ __gradle-generate-tasks-cache() {
185
185
# Run gradle to retrieve possible tasks and cache.
186
186
# Reuse Gradle Daemon if IDLE but don't start a new one.
187
187
local gradle_tasks_output
188
- if $gradle_cmd --status 2> /dev/null | grep -q IDLE; then
189
- gradle_tasks_output=" $( $gradle_cmd -b " $gradle_build_file " --daemon -q tasks --all) "
188
+ if " $gradle_cmd " --status 2> /dev/null | grep -q IDLE; then
189
+ gradle_tasks_output=" $( " $gradle_cmd " -b " $gradle_build_file " --daemon -q tasks --all) "
190
190
else
191
- gradle_tasks_output=" $( $gradle_cmd -b " $gradle_build_file " --no-daemon -q tasks --all) "
191
+ gradle_tasks_output=" $( " $gradle_cmd " -b " $gradle_build_file " --no-daemon -q tasks --all) "
192
192
fi
193
193
local output_line
194
194
local task_description
You can’t perform that action at this time.
0 commit comments