diff options
| author | Mike Naberezny | 2014-02-16 14:04:26 -0800 |
|---|---|---|
| committer | Mike McQuaid | 2014-02-16 22:35:25 +0000 |
| commit | 263f0e431c7e4a5a57057bf7b77cf87a639b39d5 (patch) | |
| tree | 08ed75998682f3eae6a868779ee137596a00ef6b /Library/Formula | |
| parent | f95d5395665a1d807713dfe852de0495ea99fba3 (diff) | |
| download | homebrew-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.rb | 3 |
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 |
