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
You are importing github.com/codegangsta/cli which is now forwarding to github.com/urfave/cli. This makes go get -u all fail for me: go: github.com/codegangsta/cli@v1.22.1: parsing go.mod: unexpected module path "github.com/urfave/cli"
You should replace github.com/codegangsta/cli with github.com/urfave/cli.
The text was updated successfully, but these errors were encountered:
Also, consider removing your test binaries dependencies from your go.mod file by making cmd/ftest its own module or by renaming cmd/ to _examples/ or .examples which I believe are ignored by go modules.
You are importing
github.com/codegangsta/cli
which is now forwarding togithub.com/urfave/cli
. This makesgo get -u all
fail for me:go: github.com/codegangsta/cli@v1.22.1: parsing go.mod: unexpected module path "github.com/urfave/cli"
You should replace
github.com/codegangsta/cli
withgithub.com/urfave/cli
.The text was updated successfully, but these errors were encountered: