diff options
| author | Markus Reiter | 2017-10-07 00:31:28 +0200 | 
|---|---|---|
| committer | Markus Reiter | 2017-10-08 16:10:37 +0200 | 
| commit | 175ca909ee1a5b57aa0cae2c879920511f311b14 (patch) | |
| tree | 067464b4c08f4c16ca3439b533f06669a78c370c /Library/Homebrew/descriptions.rb | |
| parent | 91ab116ace7f4f97d3440190463c93be9ec6d675 (diff) | |
| download | brew-175ca909ee1a5b57aa0cae2c879920511f311b14.tar.bz2 | |
Clean up code style and remove `.rubocop_todo.yml`.
Diffstat (limited to 'Library/Homebrew/descriptions.rb')
| -rw-r--r-- | Library/Homebrew/descriptions.rb | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/Library/Homebrew/descriptions.rb b/Library/Homebrew/descriptions.rb index ac1d68216..bc1982673 100644 --- a/Library/Homebrew/descriptions.rb +++ b/Library/Homebrew/descriptions.rb @@ -78,10 +78,10 @@ class Descriptions      formula_names.each do |name|        begin -        desc = Formulary.factory(name).desc +        @cache[name] = Formulary.factory(name).desc        rescue FormulaUnavailableError, *FormulaVersions::IGNORED_EXCEPTIONS +        @cache.delete(name)        end -      @cache[name] = desc      end      save_cache if options[:save]    end | 
