diff --git a/Sources/tart/Commands/Prune.swift b/Sources/tart/Commands/Prune.swift index a88f14a..318f441 100644 --- a/Sources/tart/Commands/Prune.swift +++ b/Sources/tart/Commands/Prune.swift @@ -101,7 +101,7 @@ struct Prune: AsyncParsableCommand { break } - cacheReclaimedBytes -= try prunable.sizeBytes() + cacheReclaimedBytes += try prunable.sizeBytes() try prunable.delete() } }