From 21799b5d8335774fb778c7e31689bf14bb02a4f3 Mon Sep 17 00:00:00 2001 From: Andrew Nester Date: Wed, 16 Oct 2024 15:32:13 +0200 Subject: [PATCH] Update bundle/permissions/check.go Co-authored-by: Pieter Noordhuis --- bundle/permissions/check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bundle/permissions/check.go b/bundle/permissions/check.go index 956b3be4..f5229afe 100644 --- a/bundle/permissions/check.go +++ b/bundle/permissions/check.go @@ -54,7 +54,7 @@ func (p WorkspacePathPermissions) Compare(perms []resources.Permission) diag.Dia diags = diags.Append(diag.Diagnostic{ Severity: diag.Warning, Summary: "permissions missing", - Detail: fmt.Sprintf("Following permissions set for the workspace folder but not set for bundle %s:\n%s", p.Path, toString(missing)), + Detail: fmt.Sprintf("The following permissions apply to the workspace folder at %q but are not configured in the bundle:\n%s", p.Path, toString(missing)), }) }