From 7f25abeb2e21c0aefede5217372b7439a58e1eb8 Mon Sep 17 00:00:00 2001 From: Alan Bernstein Date: Wed, 11 Jan 2017 13:11:55 -0600 Subject: [PATCH] Switch default from s3 to stdout --- cmd/pilosactl/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/pilosactl/main.go b/cmd/pilosactl/main.go index 20ef2fcab..3b9138ad1 100644 --- a/cmd/pilosactl/main.go +++ b/cmd/pilosactl/main.go @@ -1382,7 +1382,7 @@ func (cmd *BspawnCommand) ParseFlags(args []string) error { agentHosts := fs.String("agent-hosts", "", "") sshUser := fs.String("ssh-user", "", "") fs.BoolVar(&cmd.Human, "human", false, "") - fs.StringVar(&cmd.Output, "output", "s3", "") + fs.StringVar(&cmd.Output, "output", "stdout", "") fs.BoolVar(&cmd.CopyBinary, "copy-binary", false, "") err := fs.Parse(args)