Skip to content

Commit

Permalink
add missing new line escape (ohmyzsh#5896)
Browse files Browse the repository at this point in the history
missing \ was causing command not found errors when tab completing docker build -t <tab>
  • Loading branch information
AbbyRH authored and robbyrussell committed Feb 20, 2017
1 parent d2725d4 commit 9bbcced
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/docker/_docker
Original file line number Diff line number Diff line change
Expand Up @@ -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]" \
Expand Down

0 comments on commit 9bbcced

Please sign in to comment.