diff options
| author | Samuel John | 2013-08-21 20:18:55 +0200 |
|---|---|---|
| committer | Samuel John | 2013-08-21 20:18:55 +0200 |
| commit | b3cc4e8c9393d621539ed834c9e9d6f26eb7dc7f (patch) | |
| tree | f20ec84f5e718f24d8cd91975cf8e386b83a17af /Library | |
| parent | 1c13eadc714b16efadcbdd5a73a0b2cec7333cab (diff) | |
| download | homebrew-b3cc4e8c9393d621539ed834c9e9d6f26eb7dc7f.tar.bz2 | |
brew reinstall: Is able to work for all formulae
... and not just installed ones. Of course, strictly speaking,
reinstalling not-yet-installed formulae makes semantically little
sense, but the big win is that we can tell people (after we have
resolved an issue) to `brew reinstall <formula>` and even if a user
has removed that formula in the meantime, reinstall will do the right
thing. Basically adding --force to uninstall. I think this makes
reinstall more robust.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/reinstall.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Library/Homebrew/cmd/reinstall.rb b/Library/Homebrew/cmd/reinstall.rb index e7abd8d4d..e5ba1c8f4 100644 --- a/Library/Homebrew/cmd/reinstall.rb +++ b/Library/Homebrew/cmd/reinstall.rb @@ -6,6 +6,9 @@ module Homebrew extend self # At first save the named formulae and remove them from ARGV named = ARGV.named ARGV.delete_if { |arg| named.include? arg } + # We add --force because then uninstall always succeeds and so reinstall + # works for formulae not yet installed. + ARGV << "--force" clean_ARGV = ARGV.clone # Add the used_options for each named formula separately so |
