mirror of
https://github.com/ipfs/kubo.git
synced 2025-06-29 17:36:38 +08:00
core/commands2: Made 'ls' output match old command
This commit is contained in:

committed by
Juan Batiz-Benet

parent
68693783fe
commit
352c29418f
@ -72,7 +72,6 @@ it contains, with the following format:
|
|||||||
},
|
},
|
||||||
Marshallers: map[cmds.EncodingType]cmds.Marshaller{
|
Marshallers: map[cmds.EncodingType]cmds.Marshaller{
|
||||||
cmds.Text: func(res cmds.Response) ([]byte, error) {
|
cmds.Text: func(res cmds.Response) ([]byte, error) {
|
||||||
// TODO: revert format to match old command
|
|
||||||
s := ""
|
s := ""
|
||||||
output := res.Output().(*LsOutput).Objects
|
output := res.Output().(*LsOutput).Objects
|
||||||
|
|
||||||
@ -82,7 +81,7 @@ it contains, with the following format:
|
|||||||
}
|
}
|
||||||
|
|
||||||
for _, link := range object.Links {
|
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 {
|
if len(output) > 1 {
|
||||||
|
Reference in New Issue
Block a user