diff --git a/Library/Homebrew/missing_formula.rb b/Library/Homebrew/missing_formula.rb index 884c3b73fc..daa5a16f93 100644 --- a/Library/Homebrew/missing_formula.rb +++ b/Library/Homebrew/missing_formula.rb @@ -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 diff --git a/Library/Homebrew/test/missing_formula_spec.rb b/Library/Homebrew/test/missing_formula_spec.rb index 4bbdf58325..3c379ddcbc 100644 --- a/Library/Homebrew/test/missing_formula_spec.rb +++ b/Library/Homebrew/test/missing_formula_spec.rb @@ -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") }