From 41af4721ed9a29ac8a34fc84d98e8b8f8a22bce5 Mon Sep 17 00:00:00 2001 From: pavel Date: Thu, 14 May 2026 22:45:46 +0200 Subject: [PATCH] fix more stuff --- internal/app/deploy_service.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/internal/app/deploy_service.go b/internal/app/deploy_service.go index d86359c..04923c0 100644 --- a/internal/app/deploy_service.go +++ b/internal/app/deploy_service.go @@ -182,6 +182,7 @@ func runGoBuildForUser(unixUser, repoDir, binaryPath string) error { "GOPATH="+goPath, "GOMODCACHE="+goModCache, "GOCACHE="+goCache, - "go", "-C", repoDir, "build", "-o", binaryPath, ".", + "GOTOOLCHAIN=local", + "go", "-C", repoDir, "build", "-buildvcs=false", "-o", binaryPath, ".", ) }