Skip to content

Commit

Permalink
fix: Typo
Browse files Browse the repository at this point in the history
  • Loading branch information
NoUseFreak committed Dec 7, 2023
1 parent 3d37de0 commit 087e1f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/utils/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ func (u *Utils) CleanFolder(dirPath string, keepCount int) error {
if len(dirs) > keepCount {
for _, old := range u.GetOldestN(dirs, len(dirs)-keepCount) {
path := path.Join(dirPath, old)
logrus.Debugf("Deleting up %s", path)
logrus.Debugf("Cleaning up %s", path)
if err := u.Driver.Delete(path); err != nil {
return err
}
Expand Down

0 comments on commit 087e1f7

Please sign in to comment.