Closed
Description
alex@penguin /t/x> cat go.mod
module foo
go 1.12
require github.com/aws/aws-lambda-go v1.8.1
alex@penguin /t/x> go get -u github.com/aws/aws-lambda-go
go: gopkg.in/urfave/cli.v1@v1.21.0: go.mod has non-....v1 module path "github.com/urfave/cli" at revision v1.21.0
go get: error loading module requirements
Activity
Fixes aws#222 -- update dependency URL for the cli package
michael-mwp commentedon Aug 6, 2019
I've just hit this issue. @alex thanks for creating a PR so quickly!
ckeyes88 commentedon Aug 6, 2019
As a work around until #223 gets resolved you can use the Go module
replace
directive to specify the correct package...gopkg.in/urfave/cli.v1 => github.com/urfave/cli v1.21.0
bmoffatt commentedon Aug 7, 2019
released #223 with v1.12.1
go get
when using go module klaytn/klaytn#153