diff options
| author | Mike McQuaid | 2014-01-04 14:50:13 +0000 | 
|---|---|---|
| committer | Mike McQuaid | 2014-01-04 14:50:13 +0000 | 
| commit | 21b75643d804a7acc58015bfe95c9bd335e9bb1a (patch) | |
| tree | 0adf16b4a6c87437dec6ef86362a44e442a7815e /Library | |
| parent | 08ed8beb6deb90db29b6eacadc99571dc8b379e7 (diff) | |
| download | homebrew-21b75643d804a7acc58015bfe95c9bd335e9bb1a.tar.bz2 | |
bottle: improve "not installed" message.
Fixes #25546.
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/bottle.rb | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb index 740e653ed..0c1891ea9 100644 --- a/Library/Homebrew/cmd/bottle.rb +++ b/Library/Homebrew/cmd/bottle.rb @@ -96,7 +96,7 @@ module Homebrew extend self    def bottle_formula f      unless f.installed? -      return ofail "Formula not installed: #{f.name}" +      return ofail "Formula not installed or up-to-date: #{f.name}"      end      unless built_as_bottle? f  | 
