From e03703dede66147e377a7173cc6c8e5ec015c2d4 Mon Sep 17 00:00:00 2001 From: Rolf Neugebauer Date: Thu, 5 Apr 2018 10:58:01 +0100 Subject: [PATCH] build: Update go-compile to the latest Signed-off-by: Rolf Neugebauer --- Makefile | 2 +- docs/vendoring.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 9c370dd35..df2a36153 100644 --- a/Makefile +++ b/Makefile @@ -7,7 +7,7 @@ all: default VERSION="v0.2+" GIT_COMMIT=$(shell git rev-list -1 HEAD) -GO_COMPILE=linuxkit/go-compile:7392985c6f55aba61201514174b45ba755fb386e +GO_COMPILE=linuxkit/go-compile:2940a8141d907c2976be15f201f6e9b7c4c1f931 LINUXKIT?=bin/linuxkit GOOS?=$(shell uname -s | tr '[:upper:]' '[:lower:]') diff --git a/docs/vendoring.md b/docs/vendoring.md index d5d779974..d3044834b 100644 --- a/docs/vendoring.md +++ b/docs/vendoring.md @@ -28,7 +28,7 @@ docker run -it --rm \ -v $(pwd):/go/src/github.com/linuxkit/linuxkit \ -w /go/src/github.com/linuxkit/linuxkit/src/cmd/linuxkit \ --entrypoint /go/bin/vndr \ -linuxkit/go-compile:7392985c6f55aba61201514174b45ba755fb386e +linuxkit/go-compile:2940a8141d907c2976be15f201f6e9b7c4c1f931 ``` To update a single dependency: @@ -38,7 +38,7 @@ docker run -it --rm \ -v $(pwd):/go/src/github.com/linuxkit/linuxkit \ -w /go/src/github.com/linuxkit/linuxkit/src/cmd/linuxkit \ --entrypoint /go/bin/vndr \ -linuxkit/go-compile:7392985c6f55aba61201514174b45ba755fb386e +linuxkit/go-compile:2940a8141d907c2976be15f201f6e9b7c4c1f931 github.com/docker/docker ```