mirror of
https://github.com/oven-sh/bun
synced 2026-02-16 13:51:47 +00:00
Fix windows regression in Bun.main (#9156)
* Fix windows regression in Bun.main * Handle invalid handles * Fix flaky test * Better launch config * Fixup
This commit is contained in:
@@ -46,7 +46,7 @@ pub const Cli = struct {
|
||||
var wait_group: sync.WaitGroup = undefined;
|
||||
var log_: logger.Log = undefined;
|
||||
pub fn startTransform(_: std.mem.Allocator, _: Api.TransformOptions, _: *logger.Log) anyerror!void {}
|
||||
pub fn start(allocator: std.mem.Allocator, _: anytype, _: anytype, comptime MainPanicHandler: type) void {
|
||||
pub fn start(allocator: std.mem.Allocator, comptime MainPanicHandler: type) void {
|
||||
start_time = std.time.nanoTimestamp();
|
||||
log_ = logger.Log.init(allocator);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user