bundle/brew_installer: tweak approach.

Co-authored-by: Bo Anderson <mail@boanderson.me>
This commit is contained in:
Mike McQuaid 2025-03-25 17:46:41 +00:00 committed by GitHub
parent f2139c61ed
commit e97a226b62
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -63,10 +63,10 @@ module Homebrew
# Use the version from the environment if it hasn't changed. # Use the version from the environment if it hasn't changed.
# Strip the revision number because it's not part of the non-Homebrew version. # Strip the revision number because it's not part of the non-Homebrew version.
version = if !changed? && (env_version = Bundle.formula_versions_from_env[@name]) version = if !changed? && (env_version = Bundle.formula_versions_from_env[@name])
env_version PkgVersion.parse(env_version).version
else else
Formula[@full_name].version.to_s Formula[@full_name].version
end.sub(/_\d+$/, "") end.to_s
version_path = Pathname.new(@version_file) version_path = Pathname.new(@version_file)
version_path.write("#{version}\n") version_path.write("#{version}\n")