-
-
Notifications
You must be signed in to change notification settings - Fork 3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve docs around ipfs update #4880
Comments
My current workaround for this command (for embedding in shell scripts etc.) is:
|
Could you rename the issue to: "Improve docs around |
@Kubuxu - I changed it, but it is also an issue about expected behaviour within the CLI. Adding a new command to the cli (ipfs upgrade) is more than a mere documentation issue. |
I think it might be good for |
Something like
or if already up to date
|
By the way, the doc over at https://ipfs.io/docs/install/ says this:
Not exactly correct... or better said somewhat confusing. Maybe it is the name... Why would an update be a downgrade? Wouldn't the class of actions here be more like Then we would have things like:
Semantically that seems to make more sense to me... |
Downloading ipfs-update is now documented if you type |
SOLUTION (Worked for me this time)
$ go get -u github.com/ipfs/ipfs-update $ ipfs update versions $ ipfs update install v0.4.14 # or $ go get -u github.com/ipfs/ipfs-update $ ipfs update install latest
Caveat:
I know that this is really an issue for ipfs-update (will post there too)
Background:
I want to update go-ipfs from
ipfs version 0.4.14-rc3
toipfs version 0.4.14
(but actually I don't care just want latest) and there is a command listed under ipfs --help that says:Which ipfs documentation? The fastest way was to duckduckgo search for ipfs update, choose the github repo, parse the README, copy, paste, execute go get, run
ipfs update
, it shows me its internal version (1.5.3 but really I don't care), no - I have to run it twice more,ipfs update versions
, read the list for the latest one, nowipfs update install v0.4.14
.The relevant question here is: Why is it an external command (and a non-installed one at that) if it is listed as a tool in the CLI
ipfs --help
?The text was updated successfully, but these errors were encountered: