Add self to bash completion of docker node inspect

Signed-off-by: Harald Albers <github@albersweb.de>
Upstream-commit: 5b559678c3
Component: cli
This commit is contained in:
Harald Albers
2017-06-02 00:10:04 +00:00
committed by Tibor Vass
parent 000864941a
commit 1315c8af13
@@ -1966,7 +1966,7 @@ _docker_node_inspect() {
COMPREPLY=( $( compgen -W "--format -f --help --pretty" -- "$cur" ) )
;;
*)
__docker_complete_nodes
__docker_complete_nodes_plus_self
esac
}