I ran
go get -u github.com/ipfs/ipfs-update
and got in the end of what it looks like an installation going on the following
go get: installing executables with 'go get' in module mode is deprecated.
Use 'go install pkg@version' instead.
Then, used
ipfs-update versionsbut didn't see the latest version.
CodePudding user response:
To get that working I've used instead
go install github.com/ipfs/ipfs-update@latestThen once running
ipfs-update versionsI got
Then could simply run
ipfs-update install v0.11.0



