Skip to content

Commit

Permalink
Minors
Browse files Browse the repository at this point in the history
  • Loading branch information
krystian-panek-vmltech committed Apr 10, 2024
1 parent b93f36c commit 59fc25c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/content/content.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 59fc25c

Please sign in to comment.