aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-11 12:00:40 -0800
committerAdam Vandenberg2012-02-11 15:20:53 -0800
commitaddeb515c0d1ecc3b703dc274f397335fd269c56 (patch)
treef40e3a9413992a90ac9e4967a65834faa8ffa212
parent16b1d51278ff67e2a25978dae75d327637976761 (diff)
downloadhomebrew-addeb515c0d1ecc3b703dc274f397335fd269c56.tar.bz2
closure-compiler: fix quoting
-rw-r--r--Library/Formula/closure-compiler.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/closure-compiler.rb b/Library/Formula/closure-compiler.rb
index 8b45831a4..f2cd5da26 100644
--- a/Library/Formula/closure-compiler.rb
+++ b/Library/Formula/closure-compiler.rb
@@ -9,7 +9,7 @@ class ClosureCompiler < Formula
libexec.install "compiler.jar"
(bin+'closure').write <<-EOS.undent
#!/bin/bash
- java -jar #{libexec}/compiler.jar $@
+ java -jar "#{libexec}/compiler.jar" "$@"
EOS
end
end