trivial: fix `ipfs update` error message
License: MIT Signed-off-by: Thomas Gardner <tmg@fastmail.com>
Thomas Gardner committed
Jan 23, 2016 at 16:57 UTC
dfeaaebf874fe94ee7e972eed293510e26056f7d
1 file changed
+1
-1
core/commands/external.go
+1
-1
@@ -33,7 +33,7 @@ func ExternalBinary() *cmds.Command {
33
}
34
}
35
36
- res.SetError(fmt.Errorf("%s not installed."), cmds.ErrNormal)
36
+ res.SetError(fmt.Errorf("%s not installed.", binname), cmds.ErrNormal)
37
return
38
}
39