Skip to content

Commit

Permalink
=== (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
amylizzle authored Aug 11, 2024
1 parent e44832b commit ec88f44
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/extension.ts
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,8 @@ class ODBinaryDistribution implements OpenDreamInstallation {
let compileProcess = spawn(compilerPath, [dme], { cwd: workspaceFolder.path });

compileProcess.on('close', (code) => {
closeEmitter.fire(code || 1);
console.log(`Compiler process exited with code ${code}`);
closeEmitter.fire(code === null ? 1 : code);
});

compileProcess.on('error', (err) => {
Expand Down

0 comments on commit ec88f44

Please sign in to comment.