We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d60064b + 7593a3f commit 093961dCopy full SHA for 093961d
plugins/buildx.installer
@@ -6,7 +6,7 @@ source "$(dirname "$0")/.common"
6
PKG=github.com/docker/buildx
7
GOPATH=$(go env GOPATH)
8
REPO=https://${PKG}.git
9
-: "${BUILDX_COMMIT=v0.5.1}"
+: "${BUILDX_COMMIT=v0.6.0}"
10
DEST=${GOPATH}/src/${PKG}
11
12
build() {
@@ -20,7 +20,7 @@ build() {
20
local LDFLAGS
21
LDFLAGS="-X ${PKG}/version.Version=$(git describe --match 'v[0-9]*' --always --tags)-docker -X ${PKG}/version.Revision=$(git rev-parse HEAD) -X ${PKG}/version.Package=${PKG}"
22
set -x
23
- GOFLAGS=-mod=vendor go build -o bin/docker-buildx -ldflags "${LDFLAGS}" ./cmd/buildx
+ GO111MODULE=on go build -mod=vendor -o bin/docker-buildx -ldflags "${LDFLAGS}" ./cmd/buildx
24
)
25
}
26
0 commit comments