1
0
mirror of https://github.com/docker/cli.git synced 2026-01-13 18:22:35 +03:00

Merge pull request #381 from albers/completion-login-fix-sort-order

Fix sort order of options in bash completion
This commit is contained in:
Sebastiaan van Stijn
2017-08-01 21:26:46 +02:00
committed by GitHub

View File

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