diff options
| author | Jack Nagel | 2013-03-25 13:35:21 -0500 |
|---|---|---|
| committer | Jack Nagel | 2013-03-26 00:02:43 -0500 |
| commit | 41f7886cff8968d81512dcde9c297f4d58351a2a (patch) | |
| tree | 915c51df78dc39b00547d242bf3c96ecbbd8388e | |
| parent | 6f7722b518e96f75f0abdacc74af385d6af4f73b (diff) | |
| download | homebrew-41f7886cff8968d81512dcde9c297f4d58351a2a.tar.bz2 | |
rtpbreak: fix test
| -rw-r--r-- | Library/Formula/rtpbreak.rb | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/rtpbreak.rb b/Library/Formula/rtpbreak.rb index d4ce0a1fa..321c0329d 100644 --- a/Library/Formula/rtpbreak.rb +++ b/Library/Formula/rtpbreak.rb @@ -14,11 +14,11 @@ class Rtpbreak < Formula def install system "make", "CC=#{ENV.cc}" - bin.install('src/rtpbreak') + bin.install "src/rtpbreak" end - def test - system "rtpbreak" + test do + system "#{bin}/rtpbreak" end end __END__ |
