diff options
| author | Adam Vandenberg | 2012-02-11 12:00:40 -0800 |
|---|---|---|
| committer | Adam Vandenberg | 2012-02-11 15:20:53 -0800 |
| commit | addeb515c0d1ecc3b703dc274f397335fd269c56 (patch) | |
| tree | f40e3a9413992a90ac9e4967a65834faa8ffa212 | |
| parent | 16b1d51278ff67e2a25978dae75d327637976761 (diff) | |
| download | homebrew-addeb515c0d1ecc3b703dc274f397335fd269c56.tar.bz2 | |
closure-compiler: fix quoting
| -rw-r--r-- | Library/Formula/closure-compiler.rb | 2 |
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 |
