fixes from PR
License: MIT Signed-off-by: Jeromy <jeromyj@gmail.com>
Jeromy committed
Nov 16, 2015 at 09:53 UTC
2d2aa666ebdb19e258de649a776356d9fb24a207
2 files changed
+6
-1
README.md
+5
@@ -76,6 +76,11 @@ dependencies as well.
76
* Shell command completion is available in `misc/completion/ipfs-completion.bash`. Read [docs/command-completion.md](docs/command-completion.md) to learn how to install it.
77
* See the [init examples](https://github.com/ipfs/examples/tree/master/examples/init) for how to connect IPFS to systemd or whatever init system your distro uses.
78
79
+### Updating
80
+ipfs has an updating tool that can be accessed through `ipfs update`. The tool is
81
+not installed alongside ipfs in order to keep that logic indepedent of the main
82
+codebase. To install ipfs update, either [download it here](https://gobuilder.me/github.com/ipfs/ipfs-update)
83
+or install it from source with `go get -u github.com/ipfs/ipfs-update`.
84
85
## Usage
86
commands/command.go
+1
-1
@@ -284,7 +284,7 @@ func ExternalBinary() *Command {
284
if req.Arguments()[0] == "--help" {
285
buf := new(bytes.Buffer)
286
fmt.Fprintf(buf, "%s is an 'external' command.\n", binname)
287
- fmt.Fprintf(buf, "it does not currently appear to be installated.\n")
287
+ fmt.Fprintf(buf, "it does not currently appear to be installed.\n")
288
fmt.Fprintf(buf, "please refer to the ipfs documentation for instructions\n")
289
res.SetOutput(buf)
290
return