When I had the following `go.mod` ```module domai...
# general
g
When I had the following
go.mod
Copy code
module domain.com/package/path

go 1.21.7

require github.com/pelletier/go-toml v1.9.5
compiling failed with this error:
Copy code
compile: invalid value "go1.21.7" for -lang: should be something like "go1.12"
After updating the go.mod line from
go 1.21.7
to
go 1.21
-- it compiled. Is this a bug in pants?
g
(Actually, nvm me -- that looks like a different bug. Can you file a bug and I'll take a peek?)
👍 1
g