From 8d3ff5691d330364275bf8288ba543ed2f98e6c7 Mon Sep 17 00:00:00 2001 From: Jack Nagel Date: Thu, 27 Sep 2012 16:21:39 -0500 Subject: [PATCH] Fix conditional Signed-off-by: Jack Nagel --- Library/Homebrew/utils.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/utils.rb b/Library/Homebrew/utils.rb index ff301bbcf2..4f4075b076 100644 --- a/Library/Homebrew/utils.rb +++ b/Library/Homebrew/utils.rb @@ -218,7 +218,7 @@ end def ignore_interrupts(opt = nil) std_trap = trap("INT") do - puts "One sec, just cleaning up" unless opt = :quietly + puts "One sec, just cleaning up" unless opt == :quietly end yield ensure