Skip to content

Commit 9b0134b

Browse files
author
Ira Abramov
committed
even more fixes from @akinomyoga
1 parent 10340b4 commit 9b0134b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

completion/available/gradle.completion.bash

+2-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
# Bash breaks words on : by default. Subproject tasks have ':'
2424
# Avoid inaccurate completions for subproject tasks
2525
# shellcheck disable=SC2001
26-
COMP_WORDBREAKS="$(echo "$COMP_WORDBREAKS" | sed -e 's/://g')"
26+
COMP_WORDBREAKS="${COMP_WORDBREAKS//:/}"
2727

2828
function __gradle-set-project-root-dir() {
2929
project_root_dir="$(_bash-it-find-in-ancestor "settings.gradle" "gradlew")"
@@ -49,7 +49,7 @@ __gradle-set-build-file() {
4949

5050
__gradle-set-cache-name() {
5151
# Cache name is constructed from the absolute path of the build file.
52-
cache_name=$(echo "$gradle_build_file" | sed -e 's/\//_/g')
52+
cache_name=${gradle_build_file//'/'/_}
5353
}
5454

5555
__gradle-set-files-checksum() {

0 commit comments

Comments
 (0)