use the correct path in Cygwin (#544)

This commit is contained in:
Jeff Williams 2013-12-08 10:58:37 -08:00
parent 9b91c75b7d
commit 81ecdf6697

View File

@ -86,7 +86,7 @@ function initializeNode(args) {
var path = require('path');
var jsdocPath = args[0];
var pwd = process.env.PWD || args[1];
var pwd = args[1];
// resolve the path if it's a symlink
if ( fs.statSync(jsdocPath).isSymbolicLink() ) {