aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Homebrew/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Homebrew/cmd')
-rw-r--r--Library/Homebrew/cmd/reinstall.rb5
1 files changed, 4 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/reinstall.rb b/Library/Homebrew/cmd/reinstall.rb
index 419620fa1..485cf4c30 100644
--- a/Library/Homebrew/cmd/reinstall.rb
+++ b/Library/Homebrew/cmd/reinstall.rb
@@ -23,7 +23,10 @@ module Homebrew extend self
end
# Todo: Be as smart as upgrade to restore the old state if reinstall fails.
self.uninstall
- oh1 "Reinstalling #{name} #{ARGV.options_only*' '}"
+ # Don't display --force in options; user didn't request it so a bit scary.
+ options_only = ARGV.options_only
+ options_only.delete "--force"
+ oh1 "Reinstalling #{name} #{options_only*' '}"
self.install
end
end