The replace directive in the go.mod file breaks go install
|
replace github.com/VictoriaMetrics/VictoriaMetrics => github.com/VictoriaMetrics/VictoriaMetrics v1.136.1-0.20260225205418-cd2026e4308c |
go install github.com/VictoriaMetrics/mcp-victorialogs/cmd/mcp-victorialogs@latest
go: github.com/VictoriaMetrics/mcp-victorialogs@v1.9.0 requires go >= 1.26.2; switching to go1.26.3
go: github.com/VictoriaMetrics/mcp-victorialogs/cmd/mcp-victorialogs@latest (in github.com/VictoriaMetrics/mcp-victorialogs@v1.9.0):
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.
For v1.8.0 install won't work cause of module name declaration, i guess the repo was moved here.
What currently works:
go install github.com/VictoriaMetrics-Community/mcp-victorialogs/cmd/mcp-victorialogs@v1.8.0
The replace directive in the go.mod file breaks go install
mcp-victorialogs/go.mod
Line 5 in 563c892
For
v1.8.0install won't work cause of module name declaration, i guess the repo was moved here.What currently works:
go install github.com/VictoriaMetrics-Community/mcp-victorialogs/cmd/mcp-victorialogs@v1.8.0