@cryptotaxi247 / kubo / commits / 816a047a1

core/commands: 'get' arguments shouldn't be variadic

Matt Bell committed Jan 22, 2015 at 13:03 UTC 816a047a12f187f8f1da891b8b17ab70ed4f49bc
1 file changed +1 -1
core/commands/get.go
+1 -1
@@ -39,7 +39,7 @@ may also specify the level of compression by specifying '-l=<1-9>'.
39 },
40
41 Arguments: []cmds.Argument{
42 - cmds.StringArg("ipfs-path", true, true, "The path to the IPFS object(s) to be outputted").EnableStdin(),
42 + cmds.StringArg("ipfs-path", true, false, "The path to the IPFS object(s) to be outputted").EnableStdin(),
43 },
44 Options: []cmds.Option{
45 cmds.StringOption("output", "o", "The path where output should be stored"),