Add bash completion for `config --no-interpolate`

Signed-off-by: Harald Albers <github@albersweb.de>
This commit is contained in:
Harald Albers 2019-05-24 21:59:14 +02:00
parent 26e1a2dd31
commit d68113f5c0
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" ) )
}