Skip to content
This repository was archived by the owner on Mar 10, 2020. It is now read-only.

Commit cfe95f6

Browse files
JonKronedaviddias
authored andcommitted
feat: support recursive ipfs ls
1 parent de8d97c commit cfe95f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/ls.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,12 +36,12 @@ module.exports = (arg) => {
3636
}
3737

3838
result = result.map((link) => ({
39-
depth: 1,
4039
name: link.Name,
4140
path: args + '/' + link.Name,
4241
size: link.Size,
4342
hash: link.Hash,
44-
type: typeOf(link)
43+
type: typeOf(link),
44+
depth: link.Depth || 1
4545
}))
4646

4747
callback(null, result)

0 commit comments

Comments
 (0)