1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-06-29 01:12:24 +08:00

core/commands2: Made 'ls' output match old command

This commit is contained in:
Matt Bell
2014-11-09 21:07:43 -08:00
committed by Juan Batiz-Benet
parent 68693783fe
commit 352c29418f

View File

@ -72,7 +72,6 @@ it contains, with the following format:
},
Marshallers: map[cmds.EncodingType]cmds.Marshaller{
cmds.Text: func(res cmds.Response) ([]byte, error) {
// TODO: revert format to match old command
s := ""
output := res.Output().(*LsOutput).Objects
@ -82,7 +81,7 @@ it contains, with the following format:
}
for _, link := range object.Links {
s += fmt.Sprintf("-> %s %s (%v bytes)\n", link.Name, link.Hash, link.Size)
s += fmt.Sprintf("%s %v %s\n", link.Hash, link.Size, link.Name)
}
if len(output) > 1 {