From c53381a65200256b52613c900f73635ecd97b1aa Mon Sep 17 00:00:00 2001 From: isaacs Date: Sun, 16 May 2010 15:00:14 -0700 Subject: Fix the stupid man -w stuff that makes the install fail on linux. --- scripts/install-docs.js | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to 'scripts') diff --git a/scripts/install-docs.js b/scripts/install-docs.js index 186c48d05..1466e4bf7 100644 --- a/scripts/install-docs.js +++ b/scripts/install-docs.js @@ -15,11 +15,10 @@ var event = process.env.npm_lifecycle_event log(event, "docs") -exec("man", ["-w"], function (er, code, stdout, stderr) { - if (er) throw er - var manpath = stdout.trim().split(":") +exec("manpath", [], function (er, code, stdout, stderr) { + var manpath = er ? [] : stdout.trim().split(":") if (manpath.indexOf(path.dirname(manTarget)) === -1) { - log("It seems " + manTarget + " is not visible to man", "!") + log("It seems " + manTarget + " might not be visible to man", "!") log("For greater justice, please add it to your man path", "!") log("See: man man", "!") } -- cgit v1.2.3