From 7c61a3cc0ef995e7f0c94c2b220f2c9fe3909265 Mon Sep 17 00:00:00 2001 From: tidusjar Date: Fri, 16 Feb 2018 21:59:09 +0000 Subject: [PATCH] Should fix #1975 --- src/Ombi/Program.cs | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/Ombi/Program.cs b/src/Ombi/Program.cs index f3f9c8b7e..957948807 100644 --- a/src/Ombi/Program.cs +++ b/src/Ombi/Program.cs @@ -28,6 +28,12 @@ namespace Ombi { host = o.Host; storagePath = o.StoragePath; + }).WithNotParsed(err => + { + foreach (var e in err) + { + Console.WriteLine(e); + } }); Console.WriteLine(HelpOutput(result));