aboutsummaryrefslogtreecommitdiffstats
path: root/Library/Formula
diff options
context:
space:
mode:
authorDominyk Tiller2015-01-13 14:46:59 +0000
committerMike McQuaid2015-01-13 15:20:21 +0000
commit17215f16d8c4d72546ce3f738e16836c47f6d0df (patch)
tree070d1aded0226a64e67b99034a3f11f1131a3a1f /Library/Formula
parentd1d285a905852cd6925c5982280bc5b95e54ffce (diff)
downloadhomebrew-17215f16d8c4d72546ce3f738e16836c47f6d0df.tar.bz2
node: fix manpage linkage
I goofed here on the manpage linkage and location. This fixes that mistake. Given it’s post-install, shouldn’t be any need to regenerate bottles or such. Closes #35824. Signed-off-by: Mike McQuaid <mike@mikemcquaid.com>
Diffstat (limited to 'Library/Formula')
-rw-r--r--Library/Formula/node.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/node.rb b/Library/Formula/node.rb
index de0d4a8a8..c9ce4c826 100644
--- a/Library/Formula/node.rb
+++ b/Library/Formula/node.rb
@@ -98,7 +98,7 @@ class Node < Formula
# And then a step to the right, with your hand on rm_f.
["man1", "man3", "man5", "man7"].each do |man|
rm_f Dir[HOMEBREW_PREFIX/"share/man/#{man}/{npm.,npm-,npmrc.}*"]
- Dir[share/"man/#{man}/npm*"].each {|f| ln_sf f, HOMEBREW_PREFIX/"share/man/#{man}" }
+ Dir[libexec/"npm/share/man/#{man}/npm*"].each {|f| ln_sf f, HOMEBREW_PREFIX/"share/man/#{man}" }
end
npm_root = node_modules/"npm"