From ac857da48d69d5be8cc423bf8f8b8d1e7f338910 Mon Sep 17 00:00:00 2001 From: Jeff Williams Date: Tue, 23 Apr 2013 09:12:05 -0700 Subject: [PATCH] add the config file path to the error (#407) --- jsdoc.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jsdoc.js b/jsdoc.js index 9f3135db..e9e7fbb2 100644 --- a/jsdoc.js +++ b/jsdoc.js @@ -182,7 +182,7 @@ function main() { .get(); } catch (e) { - throw new Error('Configuration file cannot be evaluated: ' + e); + throw new Error('Cannot parse the config file ' + confPath + ': ' + e); } // look for options on the command line, in the config file, and in the defaults, in that order