From 59fc25cc0759a9ef3fabe5a434887e811b8fb24e Mon Sep 17 00:00:00 2001 From: Krystian Panek Date: Wed, 10 Apr 2024 12:11:50 +0200 Subject: [PATCH] Minors --- pkg/content/content.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/content/content.go b/pkg/content/content.go index 55f39b83..ff499a50 100644 --- a/pkg/content/content.go +++ b/pkg/content/content.go @@ -98,7 +98,7 @@ func (c Manager) CleanDir(root string) error { func (c Manager) CleanFile(path string) error { if !pathx.Exists(path) { - return fmt.Errorf("cannot clean file as it does not exist: %s", path) + return fmt.Errorf("cannot clean file as it does not exist '%s'", path) } log.Infof("cleaning file '%s'", path) if err := c.cleanDotContentFile(path); err != nil {