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
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o ./autograf
pkg/grafana/panel.go:7:2: no required module provides package github.com/fusakla/autograf/packages/generator; to add it:
go get github.com/fusakla/autograf/packages/generator
make: *** [Makefile:28: build] Error 1
The fix update pkg/grafana/panel.go:
from
line 7: "github.com/fusakla/autograf/packages/generator"
To
line 7: "github.com/fusakla/autograf/pkg/generator"
The text was updated successfully, but these errors were encountered:
Cloned repository locally and ran make build.
autograf git:(main) make build
I got the following error:
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build -o ./autograf
pkg/grafana/panel.go:7:2: no required module provides package github.com/fusakla/autograf/packages/generator; to add it:
go get github.com/fusakla/autograf/packages/generator
make: *** [Makefile:28: build] Error 1
The fix update pkg/grafana/panel.go:
from
line 7: "github.com/fusakla/autograf/packages/generator"
To
line 7: "github.com/fusakla/autograf/pkg/generator"
The text was updated successfully, but these errors were encountered: