Update package version to 1.25.1

This commit is contained in:
2025-09-16 18:07:11 +03:00
parent 8ca1f6b82b
commit a8b3c2ce54
3 changed files with 12 additions and 3 deletions
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
URL="https://go.dev/VERSION?m=text"
VERSION=$(curl -s -L "$URL" | head -n1)
# Trim prefix
VERSION=${VERSION//go/}
echo "$VERSION"