aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-11 15:45:42 -0800
committerAdam Vandenberg2012-02-11 15:45:42 -0800
commit7d7cd9a9daa8543479035085c615a617576b2b48 (patch)
treeb3b63cc8599b9085a626f633354c938390c46557 /Library
parent453d566f0c8d79ad5f98cdc116deef868b9ce59e (diff)
downloadhomebrew-7d7cd9a9daa8543479035085c615a617576b2b48.tar.bz2
ringojs: fix quoting
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/ringojs.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/ringojs.rb b/Library/Formula/ringojs.rb
index b884e7330..20894fdb5 100644
--- a/Library/Formula/ringojs.rb
+++ b/Library/Formula/ringojs.rb
@@ -8,7 +8,7 @@ class Ringojs < Formula
def shim_script target
<<-EOS.undent
#!/bin/bash
- #{libexec}/bin/#{target} $*
+ "#{libexec}/bin/#{target}" "$@"
EOS
end