Was updating snowflake standalone on amd64 based system, apparently it had an older go version and it tried to download ‘go1.24’ as per the go.mod, however this failed, it doesn’t work until you specify ‘go 1.24.0’ in the go.mod file.
go: downloading go1.24 (linux/amd64)
go: download go1.24 for linux/amd64: toolchain not available
fix:
edit go.mod and change
go 1.24
to:
go 1.24.0
Please consider to correct in the next update.