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
This seems to resolve the issue for me:
go mod init github.com/my/repo
Now the build seems to work:
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o httpd-counter
$ file httpd-counter
httpd-counter: ELF 64-bit LSB executable, x86-64, version 1 (SYSV), statically linked, not stripped
CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o main
main.go:8:9: cannot find package "github.com/go-redis/redis/v7" in any of:
/usr/local/go/src/github.com/go-redis/redis/v7 (from $GOROOT)
/home/adam/go/kind/src/github.com/go-redis/redis/v7 (from $GOPATH)
The text was updated successfully, but these errors were encountered: