brew/Library/Homebrew/settings.rb

38 lines
1007 B
Ruby
Raw Normal View History

# typed: true
# frozen_string_literal: true
require "utils/popen"
module Homebrew
# Helper functions for reading and writing settings.
module Settings
def self.read(setting, repo: HOMEBREW_REPOSITORY)
return unless (repo/".git/config").exist?
value = Utils.popen_read("git", "-C", repo.to_s, "config", "--get", "homebrew.#{setting}").chomp
return if value.strip.empty?
value
end
def self.write(setting, value, repo: HOMEBREW_REPOSITORY)
return unless (repo/".git/config").exist?
value = value.to_s
2024-03-07 16:20:20 +00:00
return if read(setting, repo:) == value
Kernel.system("git", "-C", repo.to_s, "config", "--replace-all", "homebrew.#{setting}", value, exception: true)
end
def self.delete(setting, repo: HOMEBREW_REPOSITORY)
return unless (repo/".git/config").exist?
2024-03-07 16:20:20 +00:00
return if read(setting, repo:).nil?
Kernel.system("git", "-C", repo.to_s, "config", "--unset-all", "homebrew.#{setting}", exception: true)
end
end
end