filecoin-project / go-data-transfer

Data Transfer Shared Component for go-filecoin & go-lotus
Other
39 stars 17 forks source link

docs(README): update installation command #353

Closed kylehuntsman closed 1 year ago

kylehuntsman commented 1 year ago

Running the installation command in the README gave me the following output without actually downloading the new module.

$ go get github.com/filecoin-project/go-data-transfer/v2/datatransfer
go: downloading github.com/filecoin-project/go-data-transfer/v2 v2.0.0-rc1
go: module github.com/filecoin-project/go-data-transfer/v2@upgrade found (v2.0.0-rc1), but does not contain package github.com/filecoin-project/go-data-transfer/v2/datatransfer

Running the following updated command ran successfully.

$ go get github.com/filecoin-project/go-data-transfer/v2
go: downloading github.com/ipfs/go-graphsync v0.14.0
go: added github.com/filecoin-project/go-data-transfer/v2 v2.0.0-rc1
go: upgraded github.com/ipfs/go-graphsync v0.13.2 => v0.14.0

Go Version: 1.19.3 linux/amd64