From 9025719968d8105a186f998b75c5af802ae0d3c6 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sun, 16 Aug 2015 17:50:33 +0100 Subject: [PATCH] cleanup: fix reversed prune time. --- Library/Homebrew/cmd/cleanup.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/cleanup.rb b/Library/Homebrew/cmd/cleanup.rb index a3b368fb95..15af028d65 100644 --- a/Library/Homebrew/cmd/cleanup.rb +++ b/Library/Homebrew/cmd/cleanup.rb @@ -139,7 +139,7 @@ module Homebrew return false unless prune_time - prune_time < path_modified_time + path_modified_time < prune_time end def eligible_for_cleanup?(formula)