bash completion: add --password-stdin

Signed-off-by: Tycho Andersen <tycho@docker.com>
This commit is contained in:
Tycho Andersen 2017-07-13 09:05:04 -06:00
parent 3e392505a8
commit bbfe23f9e6
1 changed files with 1 additions and 1 deletions

View File

@ -2684,7 +2684,7 @@ _docker_login() {
case "$cur" in
-*)
COMPREPLY=( $( compgen -W "--help --password -p --username -u" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--help --password --password-stdin -p --username -u" -- "$cur" ) )
;;
esac
}