Add `self` to bash completion of `docker node inspect`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2016-08-05 18:06:25 +02:00 committed by Tibor Vass
parent cfd7733d30
commit 5b559678c3
1 changed files with 1 additions and 1 deletions

View File

@ -1966,7 +1966,7 @@ _docker_node_inspect() {
COMPREPLY=( $( compgen -W "--format -f --help --pretty" -- "$cur" ) )
;;
*)
__docker_complete_nodes
__docker_complete_nodes_plus_self
esac
}