diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb index 2848986d4f..c62744bc82 100644 --- a/Library/Homebrew/cmd/install.rb +++ b/Library/Homebrew/cmd/install.rb @@ -86,7 +86,7 @@ module Homebrew extend self formulae.each do |f| # Check formula status and skip if necessary---a formula passed on the # command line may have been installed to satisfy a dependency. - next if f.installed? + next if f.installed? unless ARGV.flag? '--force' begin fi = FormulaInstaller.new(f)