diff options
Diffstat (limited to 'Library')
| -rw-r--r-- | Library/Homebrew/cmd/bottle.rb | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/Library/Homebrew/cmd/bottle.rb b/Library/Homebrew/cmd/bottle.rb index 12071b907..888e8c778 100644 --- a/Library/Homebrew/cmd/bottle.rb +++ b/Library/Homebrew/cmd/bottle.rb @@ -391,14 +391,10 @@ module Homebrew if !tag.empty? if !bottle_hash["bottle"]["tags"][tag].to_s.empty? - old_value = bottle_hash["bottle"]["tags"][tag][key].to_s - if value != old_value - mismatches << "#{key} => #{tag}" - end - next + mismatches << "#{key} => #{tag}" + else + bottle.send(key, value => tag.to_sym) end - - bottle.send(key, value => tag.to_sym) next end |
