mirror of
https://github.com/Homebrew/brew.git
synced 2025-07-14 16:09:03 +08:00
42 lines
1.0 KiB
Ruby
42 lines
1.0 KiB
Ruby
# typed: true
|
|
# frozen_string_literal: true
|
|
|
|
require "utils/popen"
|
|
|
|
module Homebrew
|
|
# Helper functions for reading and writing settings.
|
|
#
|
|
# @api private
|
|
module Settings
|
|
module_function
|
|
|
|
def 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 write(setting, value, repo: HOMEBREW_REPOSITORY)
|
|
return unless (repo/".git/config").exist?
|
|
|
|
value = value.to_s
|
|
|
|
return if read(setting, repo: repo) == value
|
|
|
|
Kernel.system("git", "-C", repo.to_s, "config", "--replace-all", "homebrew.#{setting}", value, exception: true)
|
|
end
|
|
|
|
def delete(setting, repo: HOMEBREW_REPOSITORY)
|
|
return unless (repo/".git/config").exist?
|
|
|
|
return if read(setting, repo: repo).blank?
|
|
|
|
Kernel.system("git", "-C", repo.to_s, "config", "--unset-all", "homebrew.#{setting}", exception: true)
|
|
end
|
|
end
|
|
end
|