1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-05 19:02:21 +08:00

fix(2/update) newlines

License: MIT
Signed-off-by: Brian Tiger Chow <brian@perfmode.com>
This commit is contained in:
Brian Tiger Chow
2014-11-13 23:19:24 -08:00
committed by Juan Batiz-Benet
parent 8b07b35467
commit 92c168b03e

View File

@ -37,10 +37,10 @@ var UpdateCmd = &cmds.Command{
v := res.Output().(*UpdateOutput)
s := ""
if v.NewVersion != v.OldVersion {
s = fmt.Sprintf("Successfully updated to IPFS version '%s' (from '%s')",
s = fmt.Sprintf("Successfully updated to IPFS version '%s' (from '%s')\n",
v.NewVersion, v.OldVersion)
} else {
s = fmt.Sprintf("Already updated to latest version ('%s')", v.NewVersion)
s = fmt.Sprintf("Already updated to latest version ('%s')\n", v.NewVersion)
}
return []byte(s), nil
},
@ -70,10 +70,10 @@ Nothing will be downloaded or installed.
v := res.Output().(*UpdateOutput)
s := ""
if v.NewVersion != v.OldVersion {
s = fmt.Sprintf("A new version of IPFS is available ('%s', currently running '%s')",
s = fmt.Sprintf("A new version of IPFS is available ('%s', currently running '%s')\n",
v.NewVersion, v.OldVersion)
} else {
s = fmt.Sprintf("Already updated to latest version ('%s')", v.NewVersion)
s = fmt.Sprintf("Already updated to latest version ('%s')\n", v.NewVersion)
}
return []byte(s), nil
},