Skip to content

Commit

Permalink
Fix issue where errors causing the build process to end early where n…
Browse files Browse the repository at this point in the history
…ot being display correctly in the Build Log
  • Loading branch information
chrismaltby committed Sep 15, 2024
1 parent 255c24f commit 39140a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Fix issue where "Replace Script" confirmation alert would appear when pasting sometimes even if the custom script hadn't been modified
- Fix issue preventing building projects containing a "Play Music" event but no music
- Fix issue where dialogue script events could cause horizontal scroll bars to appear in script editor when column was not wide enough to display all tabs
- Fix issue where errors causing the build process to end early where not being display correctly in the Build Log

## [4.1.2] - 2024-09-09

Expand Down
1 change: 1 addition & 0 deletions src/lib/compiler/buildWorker.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,7 @@ const run = async () => {
if (terminating) {
return;
}
warnings(String(e));
console.error("buildTask process terminated with error:", e);
process.exit(1);
}
Expand Down

0 comments on commit 39140a8

Please sign in to comment.