Improve settings name

This leads to a slightly more readable entry in `.git/config`.
This commit is contained in:
Carlo Cabrera 2022-08-03 20:15:45 +08:00
parent f0d2de1869
commit e1f8fa2c9b
No known key found for this signature in database
GPG Key ID: C74D447FC549A1D0

View File

@ -294,7 +294,7 @@ module Homebrew
def migrate_gcc_dependents_if_needed
return if OS.mac?
return if Settings.read("gcc.dep.rpaths.migrated") == "true"
return if Settings.read("gcc-rpaths.fixed") == "true"
Formula.installed.each do |formula|
next unless formula.tap&.core_tap?
@ -309,7 +309,7 @@ module Homebrew
nil
end
Settings.write "gcc.dep.rpaths.migrated", true
Settings.write "gcc-rpaths.fixed", true
end
end