From 2024dc34ac3d0bc5b808bc0311978f865db77caf Mon Sep 17 00:00:00 2001 From: Pierce Lopez Date: Mon, 27 Mar 2017 19:13:05 -0400 Subject: [PATCH] dist.sh: run gpm with GOPATH=$DIR/.godeps so gpm is not affected if module exists in user's GOPATH already --- dist.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist.sh b/dist.sh index 27a31a08..99b13c63 100755 --- a/dist.sh +++ b/dist.sh @@ -7,7 +7,7 @@ echo "working dir $DIR" mkdir -p $DIR/dist mkdir -p $DIR/.godeps export GOPATH=$DIR/.godeps:$GOPATH -gpm install +GOPATH=$DIR/.godeps gpm install os=$(go env GOOS) arch=$(go env GOARCH)