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

Capped IPFS, added period

License: MIT
Signed-off-by: Richard Littauer <richard.littauer@gmail.com>
This commit is contained in:
Richard Littauer
2016-02-17 13:12:28 -05:00
parent e19dbbae42
commit b1b4ac4a0b

View File

@ -13,7 +13,7 @@ import (
var TarCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Utility functions for tar files in ipfs.",
Tagline: "Utility functions for tar files in IPFS.",
},
Subcommands: map[string]*cmds.Command{
@ -75,14 +75,14 @@ var tarAddCmd = &cmds.Command{
var tarCatCmd = &cmds.Command{
Helptext: cmds.HelpText{
Tagline: "Export a tar file from ipfs.",
Tagline: "Export a tar file from IPFS.",
ShortDescription: `
'ipfs tar cat' will export a tar file from a previously imported one in ipfs
'ipfs tar cat' will export a tar file from a previously imported one in IPFS.
`,
},
Arguments: []cmds.Argument{
cmds.StringArg("path", true, false, "Ipfs path of archive to export.").EnableStdin(),
cmds.StringArg("path", true, false, "IPFS path of archive to export.").EnableStdin(),
},
Run: func(req cmds.Request, res cmds.Response) {
nd, err := req.InvocContext().GetNode()