We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10340b4 commit 9b0134bCopy full SHA for 9b0134b
completion/available/gradle.completion.bash
@@ -23,7 +23,7 @@
23
# Bash breaks words on : by default. Subproject tasks have ':'
24
# Avoid inaccurate completions for subproject tasks
25
# shellcheck disable=SC2001
26
-COMP_WORDBREAKS="$(echo "$COMP_WORDBREAKS" | sed -e 's/://g')"
+COMP_WORDBREAKS="${COMP_WORDBREAKS//:/}"
27
28
function __gradle-set-project-root-dir() {
29
project_root_dir="$(_bash-it-find-in-ancestor "settings.gradle" "gradlew")"
@@ -49,7 +49,7 @@ __gradle-set-build-file() {
49
50
__gradle-set-cache-name() {
51
# Cache name is constructed from the absolute path of the build file.
52
- cache_name=$(echo "$gradle_build_file" | sed -e 's/\//_/g')
+ cache_name=${gradle_build_file//'/'/_}
53
}
54
55
__gradle-set-files-checksum() {
0 commit comments