add debug message for travis...

This commit is contained in:
Sebastian McKenzie 2015-03-06 23:15:20 +11:00
parent f7fff7d35e
commit 19bfa4a35b

View File

@ -133,7 +133,6 @@ try {
exports.templates = require("../../templates.json");
} catch (err) {
if (err.code !== "MODULE_NOT_FOUND") throw err;
exports.templates = loadTemplates();
}
@ -146,5 +145,6 @@ try {
throw new ReferenceError(`The verison of babel-runtime of ${runtimePackage.runtime} that you have installed does not match the babel verison of ${version}`);
}
} catch (err) {
console.log(err.code);
if (err.code !== "MODULE_NOT_FOUND") throw err;
}