Browse code

update go-md2man because code.google.com needs to go away

Signed-off-by: Jessica Frazelle <acidburn@docker.com>

Jessica Frazelle authored on 2015/12/02 08:23:33
Showing 1 changed files
... ...
@@ -186,8 +186,8 @@ RUN ./contrib/download-frozen-image-v2.sh /docker-frozen-images \
186 186
 # Download man page generator
187 187
 RUN set -x \
188 188
 	&& export GOPATH="$(mktemp -d)" \
189
-	&& git clone -b v1.0.3 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
190
-	&& git clone -b v1.2 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
189
+	&& git clone -b v1.0.4 https://github.com/cpuguy83/go-md2man.git "$GOPATH/src/github.com/cpuguy83/go-md2man" \
190
+	&& git clone -b v1.4 https://github.com/russross/blackfriday.git "$GOPATH/src/github.com/russross/blackfriday" \
191 191
 	&& go get -v -d github.com/cpuguy83/go-md2man \
192 192
 	&& go build -v -o /usr/local/bin/go-md2man github.com/cpuguy83/go-md2man \
193 193
 	&& rm -rf "$GOPATH"