We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 306f495 commit 4d189b1Copy full SHA for 4d189b1
1 file changed
AppControl Manager/XMLOps/PreDeploymentChecks.cs
@@ -56,7 +56,7 @@ internal static void CheckForSignatureConflict(SiPolicy.SiPolicy policyObj)
56
// Get all of the deployed Base/AppIDTagging and Supplemental policies on the system
57
List<CiPolicyInfo> policies = CiToolHelper.GetPolicies(false, true, true);
58
59
- // Try to get at least once policy that is Signed and has the same PolicyID as the PolicyID of the Unsigned policy being verified.
+ // Try to get at least one policy that is Signed and has the same PolicyID as the PolicyID of the Unsigned policy being verified.
60
CiPolicyInfo? possibleAlreadyDeployedSignedVersion = policies.
61
FirstOrDefault(x => x.IsSignedPolicy && string.Equals(policyObj.PolicyID.Trim('{', '}'), x.PolicyID, StringComparison.OrdinalIgnoreCase));
62
0 commit comments