diff options
Diffstat (limited to 'completions/bash/podman')
-rw-r--r-- | completions/bash/podman | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 4d552b0a7..98950799e 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -1244,6 +1244,7 @@ _podman_build() { --no-cache --pull --pull-always + --pull-never --quiet -q --rm @@ -2004,7 +2005,7 @@ _podman_container_run() { return ;; --env|-e) - # we do not append a "=" here because "-e VARNAME" is legal systax, too + # we do not append a "=" here because "-e VARNAME" is legal syntax, too COMPREPLY=( $( compgen -e -- "$cur" ) ) __podman_nospace return @@ -2149,6 +2150,7 @@ _podman_rm() { local boolean_options=" --all -a + --cidfile --force -f --help @@ -2425,6 +2427,7 @@ _podman_stop() { local boolean_options=" --all -a + --cidfile -h --help --latest |