From 9f02c5929276a52637f4ec8b5c768f2f69ed813c Mon Sep 17 00:00:00 2001 From: Baptiste Fontaine Date: Thu, 4 Feb 2016 12:52:55 +0100 Subject: [PATCH] dropbear 2015.71 Closes Homebrew/homebrew#48821. Signed-off-by: Baptiste Fontaine --- Formula/dropbear.rb | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/Formula/dropbear.rb b/Formula/dropbear.rb index a379dc2dcb..b4a8e2bfc9 100644 --- a/Formula/dropbear.rb +++ b/Formula/dropbear.rb @@ -1,9 +1,9 @@ class Dropbear < Formula desc "Small SSH server/client for POSIX-based system" homepage "https://matt.ucc.asn.au/dropbear/dropbear.html" - url "https://matt.ucc.asn.au/dropbear/releases/dropbear-2015.68.tar.bz2" - mirror "https://dropbear.nl/mirror/dropbear-2015.68.tar.bz2" - sha256 "55ea7c1e904ffe4b1cdbe1addca8291a2533d7d285fd22ac33608e9502a62446" + url "https://matt.ucc.asn.au/dropbear/releases/dropbear-2015.71.tar.bz2" + mirror "https://dropbear.nl/mirror/dropbear-2015.71.tar.bz2" + sha256 "376214169c0e187ee9f48ae1a99b3f835016ad5b98ede4bfd1cf581deba783af" bottle do cellar :any @@ -36,9 +36,9 @@ class Dropbear < Formula end test do - system "dbclient", "-h" - system "dropbearkey", "-t", "ecdsa", - "-f", testpath/"testec521", "-s", "521" - File.exist? testpath/"testec521" + testfile = testpath/"testec521" + system "#{bin}/dbclient", "-h" + system "#{bin}/dropbearkey", "-t", "ecdsa", "-f", testfile, "-s", "521" + assert testfile.exist? end end