Commit 7949a1cd authored by Javier Tejero's avatar Javier Tejero

Fix `docker rmi` tab completion

This is exactly what happens on tab completion for docker rmi. This commit fixes that. ```sh $ docker rmi <hit TAB> _arguments:comparguments:312: invalid argument: __docker_images _arguments:comparguments:312: invalid argument: __docker_images _arguments:comparguments:312: invalid argument: __docker_images ```
parent a9061f34
...@@ -166,7 +166,7 @@ __rm() { ...@@ -166,7 +166,7 @@ __rm() {
__rmi() { __rmi() {
_arguments \ _arguments \
'(-f,--force=)'{-f,--force=}'[Force]' \ '(-f,--force=)'{-f,--force=}'[Force]'
__docker_images __docker_images
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment