aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-13 20:52:39 -0800
committerAdam Vandenberg2012-02-13 21:53:06 -0800
commitc27b6e7350c556cebef7e30117ec1dfbdaba016b (patch)
tree6bf4c46f49a0d1884bc21b88ebe40adbdab5b679 /Library
parent0ebc4dd30b8aba1cd641a8022a04e91f05410421 (diff)
downloadhomebrew-c27b6e7350c556cebef7e30117ec1dfbdaba016b.tar.bz2
hadoop: fix quoting
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/hadoop.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/hadoop.rb b/Library/Formula/hadoop.rb
index 261e8c327..cfd41f3af 100644
--- a/Library/Formula/hadoop.rb
+++ b/Library/Formula/hadoop.rb
@@ -1,14 +1,14 @@
require 'formula'
class Hadoop < Formula
- url 'http://www.apache.org/dyn/closer.cgi?path=hadoop/core/hadoop-0.21.0/hadoop-0.21.0.tar.gz'
homepage 'http://hadoop.apache.org/common/'
+ url 'http://www.apache.org/dyn/closer.cgi?path=hadoop/core/hadoop-0.21.0/hadoop-0.21.0.tar.gz'
md5 'ec0f791f866f82a7f2c1319a54f4db97'
def shim_script target
<<-EOS.undent
#!/bin/bash
- exec #{libexec}/bin/#{target} $@
+ exec "#{libexec}/bin/#{target}" "$@"
EOS
end