Updated help text

This commit is contained in:
Carson McManus 2016-08-22 21:20:55 -04:00
parent 34a78da416
commit 3f3bf6e9d8

View file

@ -31,10 +31,13 @@ public static class Program
{ {
Console.WriteLine("steamguard-cli - v0.0"); Console.WriteLine("steamguard-cli - v0.0");
Console.WriteLine(); Console.WriteLine();
Console.WriteLine("--help, -h Display this help message."); Console.WriteLine("--help, -h Display this help message.");
Console.WriteLine("--verbose, -v Display some extra information when the program is running."); Console.WriteLine("--verbose, -v Display some extra information when the program is running.");
Console.WriteLine("--user, -u Specify an account for which to generate a Steam Gaurd code."); Console.WriteLine("--user, -u Specify an account for which to generate a Steam Gaurd code.");
Console.WriteLine(" Otherwise, the first account will be selected."); Console.WriteLine(" Otherwise, the first account will be selected.");
Console.WriteLine("--generate-code Generate a Steam Guard code and exit. (default)");
Console.WriteLine("--encrypt Encrypt your maFiles or change your encryption passkey.");
Console.WriteLine("--decrypt Remove encryption from your maFiles.");
return; return;
} }
Verbose = args.Contains("-v") || args.Contains("--verbose"); Verbose = args.Contains("-v") || args.Contains("--verbose");
@ -105,6 +108,7 @@ public static class Program
case "decrypt": case "decrypt":
break; break;
case "setup": case "setup":
throw new NotSupportedException();
break; break;
default: default:
Console.WriteLine("error: Unknown action: {0}", action); Console.WriteLine("error: Unknown action: {0}", action);