chore: update to be compatible with all minor Go updates

This commit is contained in:
ag-wnl
2025-03-15 15:26:09 +05:30
parent cfe681d793
commit 34d190731a

View File

@@ -48,7 +48,7 @@ all: check_go_version sif
check_go_version: check_go_version:
@echo "$$COPYRIGHT_ASCII" @echo "$$COPYRIGHT_ASCII"
@echo "🔍 Checking Go version..." @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!" @echo "✅ Go version check passed!"
sif: check_go_version sif: check_go_version