scripts/with-go-mod: use correct minimum Go version

Follow-up to 8f7dc04070, which updated the
minimum Go version in vendor.mod, but did not adjust this script.

Signed-off-by: Sebastiaan van Stijn <github@gone.nl>
This commit is contained in:
Sebastiaan van Stijn
2026-06-10 10:23:25 +02:00
parent e8f837ba7f
commit 8b2a990843
+1 -1
View File
@@ -25,7 +25,7 @@ else
tee "${ROOTDIR}/go.mod" >&2 <<- EOF
module github.com/docker/cli
go 1.24.0
go 1.25.0
EOF
trap 'rm -f "${ROOTDIR}/go.mod"' EXIT
fi