From 34d190731a00b2168fe7a2a2a31f6d24ddd07d8e Mon Sep 17 00:00:00 2001 From: ag-wnl Date: Sat, 15 Mar 2025 15:26:09 +0530 Subject: [PATCH] chore: update to be compatible with all minor Go updates --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6ab0eff..e076e33 100644 --- a/Makefile +++ b/Makefile @@ -48,7 +48,7 @@ all: check_go_version sif check_go_version: @echo "$$COPYRIGHT_ASCII" @echo "🔍 Checking Go version..." - @$(GO) version | grep -E "go1\.(23|24|25)\." || (echo "❌ Error: Unsupported Go version. Install Go 1.23 or later." && exit 1) + @$(GO) version | grep -E "go1\.[2-9][0-9]*\." || (echo "❌ Error: Please install the latest version of Go" && exit 1) @echo "✅ Go version check passed!" sif: check_go_version