mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-23 03:05:48 +03:00
13 lines
257 B
Diff
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=
|