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
the release script should fail with a warning message like
In foo's go.mod, remove replacement of module bar and pin to a specific version of bar.
This may require first releasing a new version of bar.
Replace directives allow go build and test to work as multiple modules are developed at the same time, but cannot be left in place at release (git tag) time, as go get and go install won't work at the given tag.
when releasing module foo, if a replace directive is found in the
go.mod
file, e.g.the release script should fail with a warning message like
go.mod
, remove replacement of module bar and pin to a specific version of bar.Replace directives allow
go build
andtest
to work as multiple modules are developed at the same time, but cannot be left in place at release (git tag) time, asgo get
andgo install
won't work at the given tag.cause of #2462
The text was updated successfully, but these errors were encountered: