aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/proguard.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/proguard.rb b/Library/Formula/proguard.rb
index 4669ed905..7cb185a81 100644
--- a/Library/Formula/proguard.rb
+++ b/Library/Formula/proguard.rb
@@ -6,10 +6,10 @@ class Proguard < Formula
md5 '7c3e746308c0385f09783c3ee710fcc4'
def install
- libexec.install ['lib/proguard.jar']
- (bin/:proguard).write <<-EOS.undent
+ libexec.install 'lib/proguard.jar'
+ (bin+"proguard").write <<-EOS.undent
#!/bin/sh
- java -jar #{libexec}/proguard.jar $*
+ java -jar "#{libexec}/proguard.jar" "$@"
EOS
end
end