From a1d52ccf8bd642166dd3e0fdd24a528d608e043c Mon Sep 17 00:00:00 2001 From: Sarah Gillespie <73313222+gillespi314@users.noreply.github.com> Date: Wed, 19 Nov 2025 13:34:20 -0600 Subject: [PATCH] Fix unreleased typo in error message for Windows SCEP profiles (#35988) --- server/fleet/windows_mdm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/fleet/windows_mdm.go b/server/fleet/windows_mdm.go index 0b59665487..db86e4f183 100644 --- a/server/fleet/windows_mdm.go +++ b/server/fleet/windows_mdm.go @@ -396,7 +396,7 @@ func (v *windowsSCEPProfileValidator) finalizeValidation() error { // Check that at least one Exec LocURI is present and it matches the only one we have in the array. validExecLocURIs := *v.validExecSCEPProfileLocURIs if len(v.foundExecLocURIs) != 1 && !v.foundExecLocURIs[validExecLocURIs[0]] { - return errors.New("Couldn't Add. \"ClientCertificateInstall/SCEP/$FLEET_VAR_SCEP_WINDOWS_CERTIFICATE_ID/Install/Enroll\" must be included within . Please add and try again.") + return errors.New("\"ClientCertificateInstall/SCEP/$FLEET_VAR_SCEP_WINDOWS_CERTIFICATE_ID/Install/Enroll\" must be included within . Please add and try again.") } if v.totalExecLocURIs != 1 {