aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula/jena.rb
diff options
context:
space:
mode:
authorJack Nagel2014-05-30 13:17:26 -0500
committerJack Nagel2014-05-30 13:17:29 -0500
commitdbe23ee357bb069a7e5b4ce06e8466feb3aadbeb (patch)
tree5407223aca52342873d023907b520b0bb92f0bf0 /Library/Formula/jena.rb
parentafff2b2377e67bb9a7220cbc8de62b91b06e5ce8 (diff)
downloadhomebrew-dbe23ee357bb069a7e5b4ce06e8466feb3aadbeb.tar.bz2
Remove some unnecessary usage of Dir[]
Diffstat (limited to 'Library/Formula/jena.rb')
-rw-r--r--Library/Formula/jena.rb4
1 files changed, 1 insertions, 3 deletions
diff --git a/Library/Formula/jena.rb b/Library/Formula/jena.rb
index 3477f0fcc..be678a4a3 100644
--- a/Library/Formula/jena.rb
+++ b/Library/Formula/jena.rb
@@ -14,10 +14,8 @@ class Jena < Formula
end
def install
- # Remove Windows scripts
- rm_rf Dir['bat']
+ rm_rf "bat" # Remove Windows scripts
- # Install files
prefix.install %w{ LICENSE ReleaseNotes-Jena.txt NOTICE ReleaseNotes-TDB.txt README ReleaseNotes-ARQ.txt }
doc.install ['javadoc-arq', 'javadoc-core', 'javadoc-sdb', 'javadoc-tdb', 'src-examples']
libexec.install Dir['*']