mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-30 19:01:25 +02:00
14 lines
257 B
Diff
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=
|