Merge pull request #25444 from albers/completion-node-inspect-self

Add `self` to bash completion of `docker node inspect`
Upstream-commit: 5605510bb6057b0dcdd5bd57b936f69251488723
Component: engine
This commit is contained in:
Brian Goff
2016-08-05 13:21:01 -04:00
committed by GitHub
@@ -1966,7 +1966,7 @@ _docker_node_inspect() {
COMPREPLY=( $( compgen -W "--format -f --help --pretty" -- "$cur" ) )
;;
*)
__docker_complete_nodes
__docker_complete_nodes_plus_self
esac
}