From f48b0f2effa5c6ebcc9b0f79fcbef48bf9c70f32 Mon Sep 17 00:00:00 2001 From: Henry F Date: Wed, 27 Dec 2023 13:19:18 -0600 Subject: [PATCH] update for commadline option --- Benny-Scraper/CommandlineOptions.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Benny-Scraper/CommandlineOptions.cs b/Benny-Scraper/CommandlineOptions.cs index 18358be..cf791cd 100644 --- a/Benny-Scraper/CommandlineOptions.cs +++ b/Benny-Scraper/CommandlineOptions.cs @@ -57,7 +57,7 @@ public class CommandLineOptions [Option('S', "search", Required = false, Hidden = true, HelpText = "Search for novel by Title, can seach by partial name [STRING].")] public string SearchKeyword { get; set; } - [Option('U', "update-all", Required = false, Hidden = true, HelpText = "Updates all non-completed novels in database. Will only update ones that were not modified the same day")] + [Option('U', "update-all", Required = false, HelpText = "Updates all non-completed novels in database. Will only update ones that were not modified the same day")] public bool UpdateAll { get; set; } } }