Merge pull request #3662 from albers/completion-bundle--fetch-digests

bash completion for `docker-compose bundle --fetch-digests`
This commit is contained in:
Joffrey F 2016-07-07 10:39:18 -07:00 committed by GitHub
commit 79ddf06267
1 changed files with 1 additions and 1 deletions

View File

@ -117,7 +117,7 @@ _docker_compose_bundle() {
;;
esac
COMPREPLY=( $( compgen -W "--help --output -o" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--fetch-digests --help --output -o" -- "$cur" ) )
}