From d624bcde0cd5ec5b075b9aac36418dbb8db5c9c4 Mon Sep 17 00:00:00 2001 From: "Tim St. Clair" Date: Tue, 3 May 2016 10:32:04 -0700 Subject: [PATCH] Fix build for go 1.6 --- build/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/build.sh b/build/build.sh index ae0a9060..1e01226d 100755 --- a/build/build.sh +++ b/build/build.sh @@ -40,6 +40,6 @@ ldflags=" -X ${repo_path}/version.GoVersion${ldseparator}${go_version}" echo " > cadvisor" -GOBIN=. godep go install -ldflags "${ldflags}" ${repo_path} +GOBIN=$PWD godep go install -ldflags "${ldflags}" ${repo_path} exit 0