nshmura / dsio

Command line tool for Google Cloud Datastore, written in Go
70 stars 13 forks source link

Can't install dsio with go get #45

Open alon-ne opened 2 years ago

alon-ne commented 2 years ago

Hi, When I tried installing with go get as explained in the readme, I get this:

➜  dsio go get -u github.com/nshmura/dsio

# github.com/nshmura/dsio/core
../go/src/github.com/nshmura/dsio/core/log.go:41:45: undefined: cli.ExitError
../go/src/github.com/nshmura/dsio/core/context.go:23:20: c.GlobalBool undefined (type *cli.Context has no field or method GlobalBool)
milletl commented 2 years ago

You can use : go install github.com/nshmura/dsio@latest

It works for me.