Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
Co-authored-by: Nathan Seva <[email protected]>
  • Loading branch information
pivilartisant and Thykof authored Aug 9, 2024
1 parent 3399f98 commit 14d3d4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cache/cache.go
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ func (c *Cache) Delete(fileName string) error {

err = os.Remove(fullPath)
if err != nil {
return fmt.Errorf("while deleting from cache: %v", err)
return fmt.Errorf("while deleting from cache: %w", err)
}

return nil
Expand Down

0 comments on commit 14d3d4a

Please sign in to comment.