From 28685a50557f3c0e2f3eb90c4afe0549567ac3e0 Mon Sep 17 00:00:00 2001 From: chungthuang Date: Tue, 9 Jan 2024 12:33:41 +0000 Subject: [PATCH] TUN-8130: Fix path to install go for mac build --- .teamcity/mac/install-cloudflare-go.sh | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/.teamcity/mac/install-cloudflare-go.sh b/.teamcity/mac/install-cloudflare-go.sh index 75925b54..bab9fdeb 100755 --- a/.teamcity/mac/install-cloudflare-go.sh +++ b/.teamcity/mac/install-cloudflare-go.sh @@ -1,9 +1,8 @@ -cd /tmp/ -rm -rf go -rm -rf gocache +rm -rf /tmp/go export GOCACHE=/tmp/gocache +rm -rf $GOCACHE -../install-cloudflare-go.sh +./.teamcity/install-cloudflare-go.sh export PATH="/tmp/go/bin:$PATH" go version