diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2019-09-08 17:20:57 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-08 17:20:57 +0200 |
commit | 731281193a3cb739a5a8401aab550c06cb72a983 (patch) | |
tree | 99f92795de6c243f1b66750c590d0cb9e3f5ad49 | |
parent | 30cbb0091515a7f802f0f3f3ee486be6ff98f645 (diff) | |
parent | f4ebfcb97d7bb95264ba973f5e615065c5828723 (diff) | |
download | podman-731281193a3cb739a5a8401aab550c06cb72a983.tar.gz podman-731281193a3cb739a5a8401aab550c06cb72a983.tar.bz2 podman-731281193a3cb739a5a8401aab550c06cb72a983.zip |
Merge pull request #3965 from rhatdan/completions
Fix podman import bash completions
-rw-r--r-- | completions/bash/podman | 20 |
1 files changed, 14 insertions, 6 deletions
diff --git a/completions/bash/podman b/completions/bash/podman index e6ffb135f..6ec700f11 100644 --- a/completions/bash/podman +++ b/completions/bash/podman @@ -1,3 +1,7 @@ +# +# This bash script was originally copied and converted from the upstream +# github.com:docker/docker project +# : ${PROG:=$(basename ${BASH_SOURCE})} @@ -1390,20 +1394,24 @@ _podman_import() { --quiet -q " - _complete_ "$options_with_args" "$boolean_options" + case "$prev" in + --change|-c|--message|-m) + return + ;; + esac case "$cur" in -*) COMPREPLY=($(compgen -W "$boolean_options $options_with_args" -- "$cur")) ;; *) - local counter=$( __podman_pos_first_nonflag "$options_with_args" ) - if [ "$cword" -eq "$((counter))" ]; then - __podman_complete_images --repo --tag - return - else + local counter=$(__podman_pos_first_nonflag '--change|-c|--message|-m') + if [ "$cword" -eq "$counter" ]; then _filedir return + elif [ "$cword" -eq "$((counter + 1))" ]; then + __podman_complete_images --repo --tag + return fi ;; esac |