Skip to content

Commit

Permalink
Clarify a few options
Browse files Browse the repository at this point in the history
  • Loading branch information
Deadpikle committed Nov 8, 2020
1 parent 25b3ddb commit 75f1662
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/NetSparkle.Tools.AppCastGenerator/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -73,17 +73,17 @@ public class Options

#region Getting Signatures for Binaries

[Option("generate-signature", SetName = "signing", Required = false, HelpText = "Generate signature from binary")]
[Option("generate-signature", SetName = "signing", Required = false, HelpText = "File path to binary to generate a signature for")]
public string BinaryToSign { get; set; }

#endregion

#region Verifying Binary Signatures

[Option("verify", SetName = "verify", Required = false, HelpText = "Binary to verify")]
[Option("verify", SetName = "verify", Required = false, HelpText = "Path to file to verify")]
public string BinaryToVerify { get; set; }

[Option("signature", SetName = "verify", Required = false, HelpText = "Signature")]
[Option("signature", SetName = "verify", Required = false, HelpText = "Signature of file to verify")]
public string Signature { get; set; }

#endregion
Expand Down

0 comments on commit 75f1662

Please sign in to comment.