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 <cpuguy83@gmail.com>
| ... | ... |
@@ -172,7 +172,7 @@ RUN ./contrib/download-frozen-image.sh /docker-frozen-images \ |
| 172 | 172 |
# Download man page generator |
| 173 | 173 |
RUN set -x \ |
| 174 | 174 |
&& export GOPATH="$(mktemp -d)" \ |
| 175 |
- && git clone -b v1.0.1 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \ |
|
| 175 |
+ && git clone -b v1.0.3 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \ |
|
| 176 | 176 |
&& git clone -b v1.2 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \ |
| 177 | 177 |
&& go get -v -d github.com/cpuguy83/go-md2man \ |
| 178 | 178 |
&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \ |
| ... | ... |
@@ -1,7 +1,7 @@ |
| 1 | 1 |
FROM golang:1.4 |
| 2 | 2 |
RUN mkdir -p /go/src/github.com/cpuguy83 |
| 3 | 3 |
RUN mkdir -p /go/src/github.com/cpuguy83 \ |
| 4 |
- && git clone -b v1.0.1 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \ |
|
| 4 |
+ && git clone -b v1.0.3 https://github.com/cpuguy83/go-md2man.git /go/src/github.com/cpuguy83/go-md2man \ |
|
| 5 | 5 |
&& cd /go/src/github.com/cpuguy83/go-md2man \ |
| 6 | 6 |
&& go get -v ./... |
| 7 | 7 |
CMD ["/go/bin/go-md2man", "--help"] |