From d4a17256ec1538a52031a878e6f3ef38b48977c5 Mon Sep 17 00:00:00 2001 From: Chad Wilson Date: Tue, 2 Apr 2024 10:32:51 +0800 Subject: [PATCH] Correct Netflify go build Currently getting `Failed to install Go version "1.22"` - try and fix this with the .x syntax --- netlify.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/netlify.toml b/netlify.toml index 8abe8cb39..5670f2dc1 100644 --- a/netlify.toml +++ b/netlify.toml @@ -2,4 +2,4 @@ command = "go get ./build/man/ && go run build/man/man.go && cp _redirects ./_man/html/_redirects" publish = "_man/html" [build.environment] - GO_VERSION = "1.22" \ No newline at end of file + GO_VERSION = "1.22.x"