Extend bash completion to cover new flags

Ensure the new flags added to `manifest add` are known to bash
completion.

Signed-off-by: Flavio Castelli <fcastelli@suse.com>
This commit is contained in:
Flavio Castelli
2020-09-09 12:50:14 +02:00
parent 4caa8b31d7
commit 9c67a5f31c

View File

@ -1846,6 +1846,9 @@ _podman_manifest() {
_podman_manifest_add() {
local options_with_args="
--annotation
--authfile
--cert-dir
--creds
--arch
--features
--os
@ -1857,6 +1860,7 @@ _podman_manifest_add() {
--all
--help
-h
--tls-verify
"
_complete_ "$options_with_args" "$boolean_options"