missing_formula: remove sshpass from denylist

This commit is contained in:
Caleb Xu 2023-09-07 21:51:08 -04:00
parent 12c8778af9
commit fcb3f8c553
No known key found for this signature in database
GPG Key ID: 47E6040D07B8407D
2 changed files with 0 additions and 5 deletions

View File

@ -36,10 +36,6 @@ module Homebrew
lzma is now part of the xz formula:
brew install xz
EOS
when "sshpass" then <<~EOS
We won't add sshpass because it makes it too easy for novice SSH users to
ruin SSH's security.
EOS
when "gsutil" then <<~EOS
gsutil is available through pip:
pip3 install gsutil

View File

@ -21,7 +21,6 @@ describe Homebrew::MissingFormula do
it { is_expected.to disallow("pil") }
it { is_expected.to disallow("macruby") }
it { is_expected.to disallow("lzma") }
it { is_expected.to disallow("sshpass") }
it { is_expected.to disallow("gsutil") }
it { is_expected.to disallow("gfortran") }
it { is_expected.to disallow("play") }