Merge branch 'main' into remove-dependabot-cooldowns
This commit is contained in:
commit
d772221bda
@ -616,9 +616,23 @@ module Formulary
|
||||
|
||||
return unless path.expand_path.exist?
|
||||
|
||||
return if Homebrew::EnvConfig.forbid_packages_from_paths? &&
|
||||
!path.realpath.to_s.start_with?("#{HOMEBREW_CELLAR}/", "#{HOMEBREW_LIBRARY}/Taps/",
|
||||
"#{HOMEBREW_CACHE}/")
|
||||
if Homebrew::EnvConfig.forbid_packages_from_paths?
|
||||
path_realpath = path.realpath.to_s
|
||||
unless path_realpath.start_with?("#{HOMEBREW_CELLAR}/", "#{HOMEBREW_LIBRARY}/Taps/",
|
||||
"#{HOMEBREW_CACHE}/")
|
||||
raise <<~WARNING if path_realpath.include?("/") || path_realpath.end_with?(".rb")
|
||||
Rejecting formula at #{path_realpath} because it's not in a tap.
|
||||
Homebrew requires formulae to be in a tap.
|
||||
|
||||
To create a tap, run e.g.
|
||||
brew tap-new <user|org>/<repository>
|
||||
To create a formula in a tap run e.g.
|
||||
brew create <url> --tap=<user|org>/<repository>
|
||||
WARNING
|
||||
|
||||
return
|
||||
end
|
||||
end
|
||||
|
||||
if (tap = Tap.from_path(path))
|
||||
# Only treat symlinks in taps as aliases.
|
||||
|
@ -126,7 +126,7 @@ RSpec.describe Formulary do
|
||||
described_class.factory(temp_formula_path)
|
||||
ensure
|
||||
temp_formula_path.unlink
|
||||
end.to raise_error(FormulaUnavailableError)
|
||||
end.to raise_error(RuntimeError, /Rejecting formula at/)
|
||||
end
|
||||
|
||||
it "returns a Formula when given a URL", :needs_utils_curl do
|
||||
|
Loading…
x
Reference in New Issue
Block a user