From 79ad63149470270c852bf1af31df98ce9512b293 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adrian=20Z=C3=BCrcher?= Date: Tue, 5 Aug 2025 15:23:16 +0200 Subject: [PATCH] fix wrong go version --- .gitea/workflows/build.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitea/workflows/build.yaml b/.gitea/workflows/build.yaml index cd2356c..2cf879d 100644 --- a/.gitea/workflows/build.yaml +++ b/.gitea/workflows/build.yaml @@ -44,7 +44,7 @@ jobs: if [ ! -x "$GOROOT/bin/go" ]; then echo "Go not found in $GOROOT, downloading latest stable..." - GO_VERSION=$(curl -s https://go.dev/VERSION?m=text) + GO_VERSION=$(curl -s https://go.dev/VERSION?m=text | tr -d '\n\r') echo "Latest version is $GO_VERSION" mkdir -p /data/go