diff options
Diffstat (limited to 'Library/Formula/audiofile.rb')
| -rw-r--r-- | Library/Formula/audiofile.rb | 8 | 
1 files changed, 3 insertions, 5 deletions
diff --git a/Library/Formula/audiofile.rb b/Library/Formula/audiofile.rb index 8567d98b3..5c9ae3276 100644 --- a/Library/Formula/audiofile.rb +++ b/Library/Formula/audiofile.rb @@ -19,7 +19,7 @@ class Audiofile < Formula      system "make install"    end -  def test +  test do      inn  = '/System/Library/Sounds/Glass.aiff'      out  = 'Glass.wav'      conv_bin = "#{bin}/sfconvert" @@ -39,9 +39,7 @@ class Audiofile < Formula        return      end -    mktemp do -      system conv_bin, inn, out, 'format', 'wave' -      system info_bin, '--short', '--reporterror', out -    end +    system conv_bin, inn, out, 'format', 'wave' +    system info_bin, '--short', '--reporterror', out    end  end  | 
