aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAdam Vandenberg2012-02-10 20:05:02 -0800
committerAdam Vandenberg2012-02-10 20:05:02 -0800
commit93b32c6ea45815646df4fe9e601454544fe2afee (patch)
tree2c83cd95381fcacea3a58e5e6f10dd1ec3928735
parentdf5313105e72020fe3dee615f055bbc5cc697a1c (diff)
downloadhomebrew-93b32c6ea45815646df4fe9e601454544fe2afee.tar.bz2
proguard: style updates
-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