From f6603824caadf2b62587da831339be1963e78c1a Mon Sep 17 00:00:00 2001 From: Brian Goff Date: Tue, 21 Jul 2015 10:42:02 -0400 Subject: [PATCH] Bump go-md2man to 1.0.3 Fixes an issue with curly braces being escaped when they should not be. This was particularly an issue in places where `--format '{{ ... }}'` is used in the man docs. Signed-off-by: Brian Goff Upstream-commit: 6db65bfd6cc8b24f74a385cc158b56e88393a633 Component: cli --- components/cli/man/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cli/man/Dockerfile b/components/cli/man/Dockerfile index 33e515d85c..af2319524b 100644 --- a/components/cli/man/Dockerfile +++ b/components/cli/man/Dockerfile @@ -1,7 +1,7 @@ FROM golang:1.4 RUN mkdir -p /go/src/github.com/cpuguy83 RUN mkdir -p /go/src/github.com/cpuguy83 \ - && git clone -b v1.0.1 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \ + && git clone -b v1.0.3 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \ && cd /go/src/github.com/cpuguy83/go-md2man \ && go get -v ./... CMD ["/go/bin/go-md2man", "--help"]