Updated help text
This commit is contained in:
parent
34a78da416
commit
3f3bf6e9d8
1 changed files with 8 additions and 4 deletions
|
@ -35,6 +35,9 @@ public static class Program
|
||||||
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);
|
||||||
|
|
Loading…
Reference in a new issue