brew/Library/Homebrew/default_prefix.rb
Douglas Eichelberger d01cda2815 Turn up the types
2023-08-12 22:01:22 -07:00

8 lines
231 B
Ruby

# typed: strict
# frozen_string_literal: true
module Homebrew
DEFAULT_PREFIX = T.let(ENV.fetch("HOMEBREW_DEFAULT_PREFIX").freeze, String)
DEFAULT_REPOSITORY = T.let(ENV.fetch("HOMEBREW_DEFAULT_REPOSITORY").freeze, String)
end