Browse code

Merge pull request #14808 from cpuguy83/bump_md2man

Bump go-md2man to 1.0.3

Jessie Frazelle authored on 2015/07/22 11:53:26
Showing 2 changed files
... ...
@@ -177,7 +177,7 @@ RUN ./contrib/download-frozen-image.sh /docker-frozen-images \
177 177
 # Download man page generator
178 178
 RUN set -x \
179 179
 	&& export GOPATH="$(mktemp -d)" \
180
-	&& git clone -b v1.0.1 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
180
+	&& git clone -b v1.0.3 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
181 181
 	&& git clone -b v1.2 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
182 182
 	&& go get -v -d github.com/cpuguy83/go-md2man \
183 183
 	&& 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"]