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
I understand why this replacement is necessary, however, that
is not compatible with go install command. So, this need to
be addressed before the next release.
% go install github.com/go-delve/delve/cmd/dlv@master
go: downloading github.com/go-delve/delve v1.8.2-0.20220210175055-dee4437bd088
go: github.com/go-delve/delve/cmd/dlv@master (in github.com/go-delve/[email protected]):
The go.mod file for the module providing named packages contains one or
more replace directives. It must not contain directives that would cause
it to be interpreted differently than if it were the main module.
The text was updated successfully, but these errors were encountered:
Use of `replace` in go.mod breaks delve installation using
`go install`. (see golang/go#40276)
Workaround this limitation by explicitly require the fork
github.com/go-delve/liner.
go-delve/[email protected] already has go.mod module name fixed
to be github.com/go-delve/liner.
Fixesgo-delve#2904
Use of `replace` in go.mod breaks delve installation using
`go install`. (see golang/go#40276)
Workaround this limitation by explicitly require the fork
github.com/go-delve/liner.
go-delve/[email protected] already has go.mod module name fixed
to be github.com/go-delve/liner.
Fixes#2904
We observed breakage in dlv installation (microsoft/vscode-dev-containers#1300)
caused by the use of 'replace' directive.
I understand why this replacement is necessary, however, that
is not compatible with
go install
command. So, this need tobe addressed before the next release.
The text was updated successfully, but these errors were encountered: