Skip to content

Commit

Permalink
Add stdout to the compilation error result (#4278)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremy-rifkin committed Nov 11, 2022
1 parent 93de148 commit c2b3829
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/handlers/compile.js
Expand Up @@ -527,7 +527,7 @@ export class CompileHandler {
} else {
logger.error('Error during compilation: ', {error});
}
res.end(JSON.stringify({code: -1, stderr: [{text: error}]}));
res.end(JSON.stringify({code: -1, stdout: [], stderr: [{text: error}]}));
},
);
}
Expand Down

0 comments on commit c2b3829

Please sign in to comment.