diff options
Diffstat (limited to 'completions/bash/podman')
-rw-r--r-- | completions/bash/podman | 43 |
1 files changed, 43 insertions, 0 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 37f70e24a..abb629bc9 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -684,6 +684,48 @@ _podman_commit() { esac } +_podman_build() { + local boolean_options=" + --build + --help + -h + --pull + --pull-always + --quiet + -q + --tls-verify + " + + local options_with_args=" + --signature-policy + --runtime + --runtime-flag + --tag + -t + --file + -f + --build-arg + --format + " + + local all_options="$options_with_args $boolean_options" + + case "$prev" in + --runtime) + COMPREPLY=($(compgen -W 'runc runv' -- "$cur")) + ;; + $(__buildah_to_extglob "$options_with_args")) + return + ;; + esac + + case "$cur" in + -*) + COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur")) + ;; + esac +} + _podman_diff() { local options_with_args=" --format @@ -1481,6 +1523,7 @@ _podman_podman() { " commands=" attach + build commit create diff |