aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-11 15:41:14 -0800
committerAdam Vandenberg2012-02-11 15:41:14 -0800
commit2cc4339de9266bbd2a9331a27d3b5b766eb47305 (patch)
tree4f3bb947f02b49065c1ad9222670cd8914e17653 /Library
parentda6e9890c38f079d4ad8563f8b341461478a4033 (diff)
downloadhomebrew-2cc4339de9266bbd2a9331a27d3b5b766eb47305.tar.bz2
abuse: fix quoting
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/abuse.rb7
1 files changed, 3 insertions, 4 deletions
diff --git a/Library/Formula/abuse.rb b/Library/Formula/abuse.rb
index fc8946c06..4c7ca579e 100644
--- a/Library/Formula/abuse.rb
+++ b/Library/Formula/abuse.rb
@@ -1,8 +1,8 @@
require 'formula'
class Abuse < Formula
- url 'http://abuse.zoy.org/raw-attachment/wiki/download/abuse-0.8.tar.gz'
homepage 'http://abuse.zoy.org/'
+ url 'http://abuse.zoy.org/raw-attachment/wiki/download/abuse-0.8.tar.gz'
head 'svn://svn.zoy.org/abuse/abuse/trunk'
md5 'ec678b8dc8d00e0382d8c805c6438489'
@@ -11,9 +11,8 @@ class Abuse < Formula
depends_on 'libvorbis'
def startup_script; <<-EOS.undent
- #!/bin/sh
-
- #{libexec}/abuse-bin -datadir #{share}/abuse $*
+ #!/bin/bash
+ #{libexec}/abuse-bin -datadir "#{share}/abuse" "$@"
EOS
end