aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-11 11:57:36 -0800
committerAdam Vandenberg2012-02-11 11:58:22 -0800
commit6a38d82578026c3d2d1ac243e1c6fc07e955032f (patch)
tree9cf061dc0628164cf5857942d860efa2d7361b30 /Library/Formula
parentae42396b601f4fa7cecd64a02829cc9ea5cf567f (diff)
downloadhomebrew-6a38d82578026c3d2d1ac243e1c6fc07e955032f.tar.bz2
ActiveMQ: fix quoting
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/activemq.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/activemq.rb b/Library/Formula/activemq.rb
index f6c06df15..992e0638c 100644
--- a/Library/Formula/activemq.rb
+++ b/Library/Formula/activemq.rb
@@ -1,8 +1,8 @@
require 'formula'
class Activemq < Formula
- url 'http://www.apache.org/dyn/closer.cgi?path=activemq/apache-activemq/5.5.1/apache-activemq-5.5.1-bin.tar.gz'
homepage 'http://activemq.apache.org/'
+ url 'http://www.apache.org/dyn/closer.cgi?path=activemq/apache-activemq/5.5.1/apache-activemq-5.5.1-bin.tar.gz'
md5 '3e10c163c5e3869a9720d47849a5ae29'
skip_clean 'libexec/webapps/admin/WEB-INF/jsp'
@@ -10,7 +10,7 @@ class Activemq < Formula
def startup_script name
<<-EOS.undent
#!/bin/bash
- exec #{libexec}/bin/#{name} $@
+ exec "#{libexec}/bin/#{name}" "$@"
EOS
end