diff --git a/server/service/client_mdm.go b/server/service/client_mdm.go index 3a9ab423a5..dc3ed08e59 100644 --- a/server/service/client_mdm.go +++ b/server/service/client_mdm.go @@ -176,7 +176,7 @@ func downloadRemoteMacosBootstrapPackage(url string) (*fleet.MDMAppleBootstrapPa case errors.Is(err, file.ErrInvalidType): return nil, errors.New("Couldn’t edit bootstrap_package. The file must be a package (.pkg).") case errors.Is(err, file.ErrNotSigned): - return nil, errors.New("Couldn’t edit bootstrap_package. The bootstrap_package must be signed. Learn how to sign the package in the Fleet documentation: https://fleetdm.com/docs/using-fleet/mdm-macos-setup") + return nil, errors.New("Couldn’t edit bootstrap_package. The bootstrap_package must be signed. Learn how to sign the package in the Fleet documentation: https://fleetdm.com/docs/using-fleet/mdm-setup") default: return nil, fmt.Errorf("checking package signature: %w", err) }