haruyama480

Results 7 comments of haruyama480

I'm sorry for late response. I fixed conflicts!

Let me summarize this problem to share. When it occurs - go.mod specifies Go language version over `1.21` in go.mod/work without `toolchain` directive. - e.g. `go 1.21` - And, go...

Suggestion - Handle the problem case as an invalid configuration to make `go mod tidy` fail - If possible, suggest to specify go 1.21.0 or toolchain 1.21.0 as @bcmills says...

Oh, my suggestion seems to cause many scripts that is already running to fail. Improving some linters may be better because of less unintended failures.

I found another workaround. Adding a following line to .bashrc (or equivalent) and updating it for next go release, forces go command to download valid new toolchain which satisfies go...

@matloob Thanks for the discussion! I am wondering about a corner case. If this has already been discussed, please disregard. Can we build a module having `go 1.X` with the...

https://github.com/cosmtrek/air/pull/529#discussion_r1493807604 Yes, the following error is local issue. ``` go: downloading go1.22 (darwin/arm64) go: download go1.22 for darwin/arm64: toolchain not available ``` However, this merge works well without above error.