aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/hive.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-11 15:42:22 -0800
committerAdam Vandenberg2012-02-11 15:42:22 -0800
commitba1453998387357155c0910940e0059d18f7dc5a (patch)
tree274a245e54f4e952a347560aace8a1fc63059269 /Library/Formula/hive.rb
parentda448cd1402bcaa4a168599ac01828e7d67bb46f (diff)
downloadhomebrew-ba1453998387357155c0910940e0059d18f7dc5a.tar.bz2
hive: fix quoting
Diffstat (limited to 'Library/Formula/hive.rb')
-rw-r--r--Library/Formula/hive.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/hive.rb b/Library/Formula/hive.rb
index 59822a9ef..0591c3188 100644
--- a/Library/Formula/hive.rb
+++ b/Library/Formula/hive.rb
@@ -1,8 +1,8 @@
require 'formula'
class Hive < Formula
- url 'http://www.apache.org/dyn/closer.cgi?path=hive/hive-0.8.0/hive-0.8.0-bin.tar.gz'
homepage 'http://hive.apache.org'
+ url 'http://www.apache.org/dyn/closer.cgi?path=hive/hive-0.8.0/hive-0.8.0-bin.tar.gz'
md5 '9aca92b683da8955aca3beb5a438d2f9'
depends_on 'hadoop'
@@ -10,7 +10,7 @@ class Hive < Formula
def shim_script target
<<-EOS.undent
#!/bin/bash
- exec #{libexec}/bin/#{target} $*
+ exec "#{libexec}/bin/#{target}" "$@"
EOS
end