You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix(install): resolve full Go version for multi-version installs
golang.org/dl uses full version names (go1.24.12) not just major.minor
(go1.24). The script now:
1. Looks up the latest patch version from go.dev/dl API
2. Installs the full-versioned binary (go1.24.12)
3. Creates a symlink (go1.24 -> go1.24.12) for convenience
Fixes "module does not contain package golang.org/dl/go1.24" error.
0 commit comments