aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
authorAdam Vandenberg2011-12-08 21:32:53 -0800
committerAdam Vandenberg2011-12-08 21:32:58 -0800
commitdb02ad1acc3c302cb80c1bb7e39ec07cee8a1cf5 (patch)
tree75f7504cd19ebf6da478b34edc5eaca5d48bac52 /Library/Homebrew/cmd
parent18bdd7282761330dbf1ed4e896eb2e9fdac4a9a5 (diff)
downloadbrew-db02ad1acc3c302cb80c1bb7e39ec07cee8a1cf5.tar.bz2
Idioms
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/install.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/install.rb b/Library/Homebrew/cmd/install.rb
index c62744bc8..a7b3dc0f9 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? unless ARGV.flag? '--force'
+ next if f.installed? unless ARGV.force?
begin
fi = FormulaInstaller.new(f)