mirror of
https://github.com/oven-sh/bun
synced 2026-02-13 04:18:58 +00:00
* Fixes #6929 * TIL macOS symbols are case insensitive --------- Co-authored-by: Jarred Sumner <709451+Jarred-Sumner@users.noreply.github.com>
This commit is contained in:
@@ -407,8 +407,9 @@ pub const ExitHandler = struct {
|
||||
JSC.markBinding(@src());
|
||||
var vm = @fieldParentPtr(VirtualMachine, "exit_handler", this);
|
||||
Process__dispatchOnExit(vm.global, this.exit_code);
|
||||
if (vm.isMainThread())
|
||||
if (vm.isMainThread()) {
|
||||
Bun__closeAllSQLiteDatabasesForTermination();
|
||||
}
|
||||
}
|
||||
|
||||
pub fn dispatchOnBeforeExit(this: *ExitHandler) void {
|
||||
|
||||
Reference in New Issue
Block a user