diff options
author | grh2g46 <grh2g46@gmail.com> | 2017-02-20 18:20:53 +0000 |
---|---|---|
committer | Robby Russell <robby@planetargon.com> | 2017-02-20 10:20:53 -0800 |
commit | 9bbcceda97c769071862c2862c9c1f525d091deb (patch) | |
tree | c556abe2a5f148194ac0208d525ea28e07cd0110 | |
parent | d2725d44fce59ea7060b4d712c5739512a56882d (diff) | |
download | zsh-9bbcceda97c769071862c2862c9c1f525d091deb.tar.gz zsh-9bbcceda97c769071862c2862c9c1f525d091deb.tar.bz2 zsh-9bbcceda97c769071862c2862c9c1f525d091deb.zip |
add missing new line escape (#5896)
missing \ was causing command not found errors when tab completing docker build -t <tab>
-rw-r--r-- | plugins/docker/_docker | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/docker/_docker b/plugins/docker/_docker index 8d00b13e6..1aec353c5 100644 --- a/plugins/docker/_docker +++ b/plugins/docker/_docker @@ -917,7 +917,7 @@ __docker_image_subcommand() { "($help)*--label=[Set metadata for an image]:label=value: " \ "($help -m --memory)"{-m=,--memory=}"[Memory limit]:Memory limit: " \ "($help)--memory-swap=[Total memory limit with swap]:Memory limit: " \ - "($help)--network=[Connect a container to a network]:network mode:(bridge none container host)" + "($help)--network=[Connect a container to a network]:network mode:(bridge none container host)" \ "($help)--no-cache[Do not use cache when building the image]" \ "($help)--pull[Attempt to pull a newer version of the image]" \ "($help -q --quiet)"{-q,--quiet}"[Suppress verbose build output]" \ |