multi: downgrade Go to 1.24.9

This is needed, because LND and LiT use 1.24.9.
This commit is contained in:
Boris Nagaev 2025-11-17 14:09:53 -03:00
parent d9a633bc2c
commit d677e9d7e6
No known key found for this signature in database
10 changed files with 16 additions and 16 deletions

View file

@ -37,7 +37,7 @@ if ! command -v "$GO_CMD" >/dev/null 2>&1; then
fi
# Make sure we have the expected Go version installed.
EXPECTED_VERSION="go1.24.10"
EXPECTED_VERSION="go1.24.9"
INSTALLED_VERSION=$("$GO_CMD" version 2>/dev/null | awk '{print $3}')
if [ "$INSTALLED_VERSION" = "$EXPECTED_VERSION" ]; then
green "Go version matches expected: $INSTALLED_VERSION"