From ef2936528db2575b7e1a5a667336040601788522 Mon Sep 17 00:00:00 2001 From: Yaakov Date: Sun, 26 Sep 2021 14:00:33 +1000 Subject: [PATCH] clean up command help --- src/console/Commands/Cdn/StorageCopyCommand.cs | 4 ++-- src/console/Commands/Cdn/StorageLsCommand.cs | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/console/Commands/Cdn/StorageCopyCommand.cs b/src/console/Commands/Cdn/StorageCopyCommand.cs index 9f949e9..4f3ef69 100644 --- a/src/console/Commands/Cdn/StorageCopyCommand.cs +++ b/src/console/Commands/Cdn/StorageCopyCommand.cs @@ -13,10 +13,10 @@ namespace Shamir.Console [Option("connection-string", Required = false, HelpText = "Azure Storage connection string for the Storage Account backing the CDN.")] public string? ConnectionString { get; set; } - [Value(0, Required = true, MetaName = "LocalPath", HelpText = "The local path to the file to copy.")] + [Value(0, Required = true, MetaName = "local path", HelpText = "The local path to the file to copy.")] public string? LocalPath { get; set; } - [Value(1, Required = true, MetaName = "RemotePath", HelpText = "The destination path in Azure Storage.")] + [Value(1, Required = true, MetaName = "remote path", HelpText = "The destination path in Azure Storage.")] public string? RemotePath { get; set; } } diff --git a/src/console/Commands/Cdn/StorageLsCommand.cs b/src/console/Commands/Cdn/StorageLsCommand.cs index d2834d8..d205d0a 100644 --- a/src/console/Commands/Cdn/StorageLsCommand.cs +++ b/src/console/Commands/Cdn/StorageLsCommand.cs @@ -13,7 +13,7 @@ namespace Shamir.Console [Option('a', "all", HelpText = "List all blobs in the container")] public bool EnumerateAll { get; set; } - [Value(0, MetaName = "Path", HelpText = "Path to enumerate, starting with the Azure Storage container name.")] + [Value(0, MetaName = "path", HelpText = "Path to enumerate, starting with the Azure Storage container name.")] public string? Path { get; set; } }