mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
Merge pull request #24373 from floatingLomas/zsh-completion-fix
Remove unmatched bracket from _docker for zsh
This commit is contained in:
commit
a04a11f3e5
1 changed files with 1 additions and 1 deletions
|
@ -705,7 +705,7 @@ __docker_nodes() {
|
|||
|
||||
type=$1; shift
|
||||
filter=$1; shift
|
||||
[[ $filter != "none") ]] && args=("-f $filter")
|
||||
[[ $filter != "none" ]] && args=("-f $filter")
|
||||
|
||||
lines=(${(f)"$(_call_program commands docker $docker_options node ls $args)"})
|
||||
# Parse header line to find columns
|
||||
|
|
Loading…
Reference in a new issue