Skip to content

Commit 5149508

Browse files
Update scripts/compile-templates.mjs
Co-authored-by: Josh Mock <joshua.mock@elastic.co>
1 parent 307ba11 commit 5149508

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/compile-templates.mjs

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ const cmd = "handlebars python.tpl javascript.tpl -f templates.js -c";
99
exec(cmd, (error, stdout, stderr) => {
1010
if (error) {
1111
console.log(stdout);
12-
console.log(stderr);
12+
console.error(stderr);
1313
process.exit(1);
1414
}
1515
let templates = fs.readFileSync("templates.js", 'utf-8');

0 commit comments

Comments
 (0)