Revert "bottle: allow --keep-old to ignore same sha256s."

This reverts commit ec1437499a178a09805854469c5162d749270f3e.
This commit is contained in:
Mike McQuaid 2016-09-04 13:22:06 +01:00
parent f19ad51734
commit 44ae0080e1

View File

@ -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