From c187fbb735c203ba2c40de900f339717f7b0f1f9 Mon Sep 17 00:00:00 2001 From: Andrew Woodlee Date: Mon, 10 Feb 2025 17:00:02 -0600 Subject: [PATCH] [WIP] v0.7.0 almost ready to release --- cmd/host.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/host.go b/cmd/host.go index ff805ab..4666e2e 100644 --- a/cmd/host.go +++ b/cmd/host.go @@ -23,8 +23,8 @@ var cmdList []string func init() { - hostExecCommand.Flags().StringArrayVarP(&hostsList, "hosts", "m", nil, "Accepts space-separated names of hosts.") - hostExecCommand.Flags().StringArrayVarP(&cmdList, "command", "c", nil, "Accepts space-separated names of commands.") + hostExecCommand.Flags().StringArrayVarP(&hostsList, "hosts", "m", nil, "Accepts space-separated names of hosts. Specify multiple times for multiple hosts.") + hostExecCommand.Flags().StringArrayVarP(&cmdList, "command", "c", nil, "Accepts space-separated names of commands. Specify multiple times for multiple commands.") parseS3Config() }