Skip to content

Commit

Permalink
Fix validation error in SignCommand.cs (#231)
Browse files Browse the repository at this point in the history
  • Loading branch information
vcsjones authored May 1, 2024
2 parents dfc407a + 069c403 commit d72c5c1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/AzureSignTool/SignCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ private ValidationResult OnValidate()
}
if (Quiet && Verbose)
{
return new ValidationResult("Cannot use '--quiet' and '--verbose' options together.", new[] { nameof(NoPageHashing), nameof(PageHashing) });
return new ValidationResult("Cannot use '--quiet' and '--verbose' options together.", new[] { nameof(Quiet), nameof(Verbose) });
}
if (!OneTrue(KeyVaultAccessToken.Present, KeyVaultClientId.Present, UseManagedIdentity))
{
Expand Down

0 comments on commit d72c5c1

Please sign in to comment.