From c79054fbfb9c5062cb87c546c2389462f4d07aed Mon Sep 17 00:00:00 2001 From: Carson McManus Date: Sun, 21 Aug 2016 11:46:56 -0400 Subject: [PATCH] Added some return codes --- Program.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Program.cs b/Program.cs index d190d2d..8def123 100644 --- a/Program.cs +++ b/Program.cs @@ -15,6 +15,8 @@ public static class Program Console.WriteLine("steamguard-cli - v0.0"); Console.WriteLine(); Console.WriteLine("--help, -h Display this help message."); + return 0; } + return 1; } }