Slightly better error message.

This commit is contained in:
André Cruz
2013-01-29 14:58:07 +00:00
parent a0c7e5df57
commit 01bd65f8e6

View File

@@ -278,7 +278,7 @@ Package.prototype.loadJSON = function () {
readJSON(jsonFile, function (err, json) {
if (err) {
err.details = 'There was an error while reading the ' + config.json;
err.details = 'This error was caught when reading the ' + config.json;
return this.emit('error', err);
}