We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent adf96f7 commit dc278f5Copy full SHA for dc278f5
1 file changed
server/src/incrementalCompilation.ts
@@ -712,7 +712,12 @@ async function compileContents(
712
entry.project.bscBinaryLocation,
713
callArgs,
714
{ cwd, signal },
715
- );
+ ).catch((error) => {
716
+ if (error.stderr) {
717
+ return { stderr: error.stderr };
718
+ }
719
+ throw error;
720
+ });
721
722
getLogger().log(
723
`Recompiled ${entry.file.sourceFileName} in ${
0 commit comments