2023-08-08 13:54:59 -07:00
|
|
|
# typed: strict
|
2021-05-12 16:07:47 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
module Homebrew
|
|
|
|
# For testing's sake always assume the default prefix
|
2023-08-08 13:54:59 -07:00
|
|
|
DEFAULT_PREFIX = T.let(HOMEBREW_PREFIX.to_s.freeze, String)
|
|
|
|
DEFAULT_REPOSITORY = T.let(HOMEBREW_REPOSITORY.to_s.freeze, String)
|
2021-05-12 16:07:47 +01:00
|
|
|
end
|