Update spf13/cobra

This commit is contained in:
Alexander Neumann
2017-04-18 21:35:33 +02:00
parent 27c5a2825a
commit 5a7e463ef6
17 changed files with 572 additions and 91 deletions

View File

@@ -612,7 +612,7 @@ func TestSubcommandExecuteC(t *testing.T) {
Use: "echo message",
Run: func(c *Command, args []string) {
msg := strings.Join(args, " ")
c.Println(msg, msg)
c.Println(msg)
},
}