Merge pull request #12007 from Homebrew/revert-11994-openssl3

Revert "rubocops: allow uses_from_macos `openssl@3`"
This commit is contained in:
Mike McQuaid 2021-09-09 09:41:05 +01:00 committed by GitHub
commit 88c63054b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 1 additions and 2 deletions

View File

@ -82,7 +82,6 @@ module RuboCop
gzip gzip
openssl openssl
openssl@1.1 openssl@1.1
openssl@3
perl perl
php php
python python

View File

@ -7,7 +7,7 @@ shared_examples "formulae exist" do |array|
core_tap = Pathname("#{HOMEBREW_LIBRARY_PATH}/../Taps/homebrew/homebrew-core") core_tap = Pathname("#{HOMEBREW_LIBRARY_PATH}/../Taps/homebrew/homebrew-core")
formula_path = core_tap/"Formula/#{f}.rb" formula_path = core_tap/"Formula/#{f}.rb"
alias_path = core_tap/"Aliases/#{f}" alias_path = core_tap/"Aliases/#{f}"
expect(formula_path.exist? || alias_path.exist? || f.start_with?("openssl")).to be true expect(formula_path.exist? || alias_path.exist?).to be true
end end
end end
end end