aports/testing/bazel2/bash_completion.patch
2020-08-16 23:56:22 +00:00

14 lines
257 B
Diff

Bash completion patch to fix error in expr
--- a/scripts/generate_bash_completion.sh.orig
+++ a/scripts/generate_bash_completion.sh
@@ -34,7 +34,7 @@
}
get_optarg() {
- expr -- "${1}" : "[^=]*=\\(.*\\)"
+ expr "${1}" : "[^=]*=\\(.*\\)"
}
append=