aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorMike Naberezny2014-02-16 14:04:26 -0800
committerMike McQuaid2014-02-16 22:35:25 +0000
commit263f0e431c7e4a5a57057bf7b77cf87a639b39d5 (patch)
tree08ed75998682f3eae6a868779ee137596a00ef6b /Library/Formula
parentf95d5395665a1d807713dfe852de0495ea99fba3 (diff)
downloadhomebrew-263f0e431c7e4a5a57057bf7b77cf87a639b39d5.tar.bz2
md5deep: fix test
Closes #26776. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/md5deep.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/Library/Formula/md5deep.rb b/Library/Formula/md5deep.rb
index 6054f26c9..17f346bd9 100644
--- a/Library/Formula/md5deep.rb
+++ b/Library/Formula/md5deep.rb
@@ -11,6 +11,7 @@ class Md5deep < Formula
end
def test
- system("#{bin}/md5deep -h") && system("#{bin}/hashdeep -h")
+ system bin/"md5deep", "-h"
+ system bin/"hashdeep", "-h"
end
end