Add self to bash completion of docker node inspect

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers
2017-06-02 00:10:04 +00:00
committed by Tibor Vass
parent cfd7733d30
commit 5b559678c3
+1 -1
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
}