aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/getmail.rb
diff options
context:
space:
mode:
authorAdam Vandenberg2013-08-15 09:37:53 -0700
committerAdam Vandenberg2013-08-15 09:37:53 -0700
commitf79271fee0119c9dcbb74651de913c2c376d76fd (patch)
tree482e4f2eea9c9b0f4a867bd544bfde80c8917677 /Library/Formula/getmail.rb
parent514f873ddc5604612a369d9e3d88e743b68e4173 (diff)
downloadhomebrew-f79271fee0119c9dcbb74651de913c2c376d76fd.tar.bz2
getmail: simplify slightly
Diffstat (limited to 'Library/Formula/getmail.rb')
-rw-r--r--Library/Formula/getmail.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/Library/Formula/getmail.rb b/Library/Formula/getmail.rb
index 223a3efb1..b9f598228 100644
--- a/Library/Formula/getmail.rb
+++ b/Library/Formula/getmail.rb
@@ -7,9 +7,9 @@ class Getmail < Formula
sha1 'c4ebc38d17f9a2ed2516e5070e300b0e160b0aaa'
def install
- scripts = %w( getmail getmail_fetch getmail_maildir getmail_mbox )
- libexec.install scripts, 'getmailcore'
- bin.install_symlink Dir["#{libexec}/*"] - ["#{libexec}/getmailcore"]
+ libexec.install %w( getmail getmail_fetch getmail_maildir getmail_mbox )
+ bin.install_symlink Dir["#{libexec}/*"]
+ libexec.install 'getmailcore'
man1.install Dir['docs/*.1']
end
end