aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hbase.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-11 15:22:36 -0800
committerAdam Vandenberg2012-02-11 15:22:36 -0800
commit78d6e07c02114242b4f60a0d01d3b1e55cbcf9db (patch)
tree86b8416c7c4e109a02f3f772e60141d652f0f9a9 /Library/Formula/hbase.rb
parent02cd08a98c11824edc872271bc80665a7d30476f (diff)
downloadhomebrew-78d6e07c02114242b4f60a0d01d3b1e55cbcf9db.tar.bz2
hbase: fix quoting
Diffstat (limited to 'Library/Formula/hbase.rb')
-rw-r--r--Library/Formula/hbase.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/hbase.rb b/Library/Formula/hbase.rb
index 81808f1aa..6baf60743 100644
--- a/Library/Formula/hbase.rb
+++ b/Library/Formula/hbase.rb
@@ -10,7 +10,7 @@ class Hbase < Formula
def shim_script target
<<-EOS.undent
#!/bin/bash
- exec #{libexec}/bin/#{target} $@
+ exec "#{libexec}/bin/#{target}" "$@"
EOS
end