1
0
Fork 0
mirror of https://gitlab.alpinelinux.org/alpine/aports.git synced 2025-07-23 03:05:48 +03:00
aports/testing/bazel/bash_completion.patch
2020-01-01 17:44:04 +01:00

13 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=