aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorVincent Nonnenmacher2012-10-04 23:09:30 +0200
committerJack Nagel2012-10-04 20:39:57 -0500
commit4c6706c8c21a758322dcab596ef69be1ab61a421 (patch)
tree8a10ea768832cea4b2e305e9ff53a7356cfe550e /Library
parent8c402d4b6539b814a765b934e5d0e88c30f90b03 (diff)
downloadhomebrew-4c6706c8c21a758322dcab596ef69be1ab61a421.tar.bz2
vert.x: fix broken installation
Closes #15307. Signed-off-by: Jack Nagel <jacknagel@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/vert.x.rb8
1 files changed, 4 insertions, 4 deletions
diff --git a/Library/Formula/vert.x.rb b/Library/Formula/vert.x.rb
index 5b0194b8a..f23df756a 100644
--- a/Library/Formula/vert.x.rb
+++ b/Library/Formula/vert.x.rb
@@ -2,13 +2,13 @@ require 'formula'
class VertX < Formula
homepage 'http://vertx.io/'
- url 'http://vertx.io/downloads/vert.x-1.2.3.final.tar.gz.html'
- sha1 '11555bf76162a144063422e38c8d16eb8ea6913e'
+ url 'http://vertx.io/downloads/vert.x-1.2.3.final.tar.gz'
+ sha1 'ed1b3334ac80b3e73079d2d34edb170789163e7d'
def install
rm_f Dir["bin/*.bat"]
- libexec.install %w[bin client conf lib mods]
- doc.install %w[docs examples]
+ libexec.install %w[bin client conf lib examples]
+ doc.install %w[api-docs]
bin.install_symlink "#{libexec}/bin/vertx"
end
end