1
0
mirror of https://github.com/ipfs/kubo.git synced 2025-08-06 11:31:54 +08:00

Add newline to end of the output for a few commands.

Commands affected:

 - ipfs object put
 - ipfs tar add
 - ipfs resolve
 - ipfs name resolve

License: MIT
Signed-off-by: Nick Hamann <nick@wabbo.org>
This commit is contained in:
Nick Hamann
2015-11-23 13:46:49 -06:00
parent c9d118c0db
commit d49a15f566
8 changed files with 15 additions and 15 deletions

View File

@ -117,7 +117,7 @@ Resolve the value of an IPFS DAG path:
if !ok {
return nil, u.ErrCast()
}
return strings.NewReader(output.Path.String()), nil
return strings.NewReader(output.Path.String() + "\n"), nil
},
},
Type: ResolvedPath{},