diff options
Diffstat (limited to 'completions/bash')
-rw-r--r-- | completions/bash/podman | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index 564d35f67..9ed64ce3a 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -2468,7 +2468,6 @@ _podman_rm() { -i --latest -l - --storage --volumes -v " @@ -2696,7 +2695,7 @@ _podman_ps() { --pod -p --quiet -q --size -s - --storage + --external --namespace --ns --sync " @@ -3168,7 +3167,11 @@ _podman_container_exists() { " local boolean_options=" - " + --external + -h + --help + " + case "$cur" in -*) COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur")) |