aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorEtienne Laurin2013-01-31 19:47:44 -0800
committerAdam Vandenberg2013-02-01 09:10:05 -0800
commit4d45d625da8adf203b3a379bcde02f68cb182451 (patch)
tree95782e57e6b715971891b04738b3904e954da254 /Library
parenta2aabbd1606cf08fdf9f5bbf2f2c3caad9244594 (diff)
downloadhomebrew-4d45d625da8adf203b3a379bcde02f68cb182451.tar.bz2
rethinkdb: fix the installation path
Some lines in the previous rethinkdb pull request were re-ordered, but one of the essential lines was removed. Closes #17486. Signed-off-by: Adam Vandenberg <flangy@gmail.com>
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/rethinkdb.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/rethinkdb.rb b/Library/Formula/rethinkdb.rb
index 67198359a..2e6e12c0b 100644
--- a/Library/Formula/rethinkdb.rb
+++ b/Library/Formula/rethinkdb.rb
@@ -20,6 +20,6 @@ class Rethinkdb < Formula
system "make DEBUG=0 WEBRESDIR=#{share}/rethinkdb/web"
end
bin.install 'build/release/rethinkdb'
- share.install 'build/release/web' => 'rethinkdb'
+ (share/'rethinkdb').install 'build/release/web'
end
end