From 95bf387ecce5b60886d6f5e060956c039446c3e5 Mon Sep 17 00:00:00 2001 From: Kota Kanbe Date: Sat, 24 Sep 2016 20:35:41 +0900 Subject: [PATCH] Fix a help message of -report-azure-blob option --- commands/scan.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/commands/scan.go b/commands/scan.go index db329931..da232db0 100644 --- a/commands/scan.go +++ b/commands/scan.go @@ -208,7 +208,7 @@ func (p *ScanCmd) SetFlags(f *flag.FlagSet) { f.BoolVar(&p.reportAzureBlob, "report-azure-blob", false, - "Write report to S3 (container/yyyyMMdd_HHmm/servername.json)", + "Write report to Azure Storage blob (container/yyyyMMdd_HHmm/servername.json)", ) f.StringVar(&p.azureAccount, "azure-account", "", "Azure account name to use. AZURE_STORAGE_ACCOUNT environment variable is used if not specified") f.StringVar(&p.azureKey, "azure-key", "", "Azure account key to use. AZURE_STORAGE_ACCESS_KEY environment variable is used if not specified")