Merge pull request #6728 from albers/completion-config--no-interpolate

Add bash completion for `config --no-interpolate`
This commit is contained in:
Djordje Lukic 2019-07-16 11:59:18 +02:00 committed by GitHub
commit d212fe68a6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -150,7 +150,7 @@ _docker_compose_config() {
;;
esac
COMPREPLY=( $( compgen -W "--hash --help --quiet -q --resolve-image-digests --services --volumes" -- "$cur" ) )
COMPREPLY=( $( compgen -W "--hash --help --no-interpolate --quiet -q --resolve-image-digests --services --volumes" -- "$cur" ) )
}