doc(commands): document that dht put takes a file

Turns out that our CLI help text doesn't indicate whether or not a command takes
a file.
This commit is contained in:
Steven Allen 2020-03-06 13:49:57 -08:00
parent 083ef47ce8
commit fef5e8d780

View File

@ -536,7 +536,7 @@ identified by QmFoo.
Arguments: []cmds.Argument{
cmds.StringArg("key", true, false, "The key to store the value at."),
cmds.FileArg("value", true, false, "The value to store.").EnableStdin(),
cmds.FileArg("value-file", true, false, "A path to a file containing the value to store.").EnableStdin(),
},
Options: []cmds.Option{
cmds.BoolOption(dhtVerboseOptionName, "v", "Print extra information."),