Merge pull request #16345 from albers/completion-extglob-fix

[Fix 16326] Bash completion syntax error on OSX
Upstream-commit: c1e59b94e2de1f6380dce451886185117bbde06f
Component: engine
This commit is contained in:
David Calavera
2015-09-16 13:43:02 -07:00

View File

@ -182,12 +182,12 @@ __docker_pos_first_nonflag() {
# globs like '--log-level|-l'
# Only positions between the command and the current word are considered.
__docker_value_of_option() {
local option_glob=$1
local option_extglob=$(__docker_to_extglob "$1")
local counter=$((command_pos + 1))
while [ $counter -lt $cword ]; do
case ${words[$counter]} in
@($option_glob) )
$option_extglob )
echo ${words[$counter + 1]}
break
;;