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
In our project we run go generate ./... on a big code-base, if there's an error go generate skips the package and carries on, only returning an error code at the end. This makes it hard to scroll through the mountain of logs to find the actual error.
It would be great if we had a fail fast flag, i.e something like go generate --fail-fast ./... that would stop on the first error it sees, to make it clear where the error is coming from (and also to save time).