aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/audiofile.rb
diff options
context:
space:
mode:
Diffstat (limited to 'Library/Formula/audiofile.rb')
-rw-r--r--Library/Formula/audiofile.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/audiofile.rb b/Library/Formula/audiofile.rb
index 8e2e864ba..95601fb1a 100644
--- a/Library/Formula/audiofile.rb
+++ b/Library/Formula/audiofile.rb
@@ -47,9 +47,9 @@ class Audiofile < Formula
end
mktemp do
- system "#{conv_bin} #{inn} #{out} format wave"
- system "#{info_bin} --short --reporterror #{out}"
- system "#{hear_bin} -p #{out}" if ARGV.verbose?
+ system conv_bin, inn, out, 'format', 'wave'
+ system info_bin, '--short', '--reporterror', out
+ system hear_bin, '-p', out if ARGV.verbose?
end
end
end