diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:58 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-05-04 01:03:58 +0000 |
commit | 5883c2ff7869f27984084487e603c17b49508812 (patch) | |
tree | 73cebff807071fd1d7ba1ec819152233e6da3b05 /bash_completion | |
parent | Releasing progress-linux version 1:2.12.0-1~progress7.99u1. (diff) | |
download | bash-completion-5883c2ff7869f27984084487e603c17b49508812.tar.xz bash-completion-5883c2ff7869f27984084487e603c17b49508812.zip |
Merging upstream version 1:2.13.0.
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to '')
-rw-r--r-- | bash_completion | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/bash_completion b/bash_completion index e245cc5..42a5dca 100644 --- a/bash_completion +++ b/bash_completion @@ -25,7 +25,7 @@ BASH_COMPLETION_VERSINFO=( 2 # x-release-please-major - 12 # x-release-please-minor + 13 # x-release-please-minor 0 # x-release-please-patch ) @@ -1737,7 +1737,7 @@ _comp_compgen_available_interfaces() fi } 2>/dev/null | _comp_awk \ '/^[^ \t]/ { if ($1 ~ /^[0-9]+:/) { print $2 } else { print $1 } }')" && - _comp_compgen -U generated set "${generated[@]}" + _comp_compgen -U generated set "${generated[@]%%[[:punct:]]*}" } # Echo number of CPUs, falling back to 1 on failure. |