Skip to content

Commit 782cce5

Browse files
author
Ira Abramov
committed
yet more fixes from @akinomyoga
1 parent 9b0134b commit 782cce5

File tree

2 files changed

+4
-6
lines changed

2 files changed

+4
-6
lines changed

completion/available/fabric.completion.bash

+1-3
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,6 @@ esac
5353
# Get time of last fab cache file modification as seconds since Epoch
5454
#
5555
function __fab_chache_mtime() {
56-
# shellcheck disable=SC2090
5756
"${__FAB_COMPLETION_MTIME_COMMAND[@]}" \
5857
$FAB_COMPLETION_CACHED_TASKS_FILENAME | xargs -n 1 expr
5958
}
@@ -64,11 +63,10 @@ function __fab_chache_mtime() {
6463
function __fab_fabfile_mtime() {
6564
local f="fabfile"
6665
if [[ -e "$f.py" ]]; then
67-
# shellcheck disable=SC2090
6866
"${__FAB_COMPLETION_MTIME_COMMAND[@]}" "$f.py" | xargs -n 1 expr
6967
else
7068
# Suppose that it's a fabfile dir
71-
# shellcheck disable=SC2090,SC2038
69+
# shellcheck disable=SC2038
7270
find "$f"/*.py -exec "${__FAB_COMPLETION_MTIME_COMMAND[@]}" {} + \
7371
| xargs -n 1 expr | sort -n -r | head -1
7472
fi

completion/available/gradle.completion.bash

+3-3
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,10 @@ __gradle-generate-tasks-cache() {
185185
# Run gradle to retrieve possible tasks and cache.
186186
# Reuse Gradle Daemon if IDLE but don't start a new one.
187187
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)"
190190
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)"
192192
fi
193193
local output_line
194194
local task_description

0 commit comments

Comments
 (0)