From 603ee8b4a6da8e0b5caaa8a2c2de5924306f874d Mon Sep 17 00:00:00 2001 From: hexxa Date: Sat, 23 Apr 2022 20:38:08 +0800 Subject: [PATCH] fix(ci): replace go get with go install --- scripts/build_be.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_be.sh b/scripts/build_be.sh index 1a241df84..2578da800 100755 --- a/scripts/build_be.sh +++ b/scripts/build_be.sh @@ -6,7 +6,7 @@ rm -r dist && mkdir dist # set this for builders behind GFW... go env -w GOPROXY=https://goproxy.cn,direct -go get github.com/mitchellh/gox@v1.0.1 +go install github.com/mitchellh/gox@v1.0.1 PATH=$PATH:$HOME/go/bin cd cmd/start gox \