use another hack to fix our other hack

This commit is contained in:
Squibid 2025-12-11 15:10:02 -05:00
parent 61591a044e
commit a2a3692194
Signed by: squibid
GPG key ID: BECE5684D3C4005D

View file

@ -78,6 +78,9 @@ pub fn main() !void {
remote.remote_lua.?.pushLua(@ptrCast(c[0..].ptr)); remote.remote_lua.?.pushLua(@ptrCast(c[0..].ptr));
_ = remote.display.flush(); _ = remote.display.flush();
_ = remote.display.dispatch(); _ = remote.display.dispatch();
const stdout = @constCast(&std.fs.File.stdout().writer(@constCast(&[_]u8{})).interface);
try stdout.writeAll("\r");
try stdout.flush();
return; return;
} else if (!options.options.@"follow-log") { } else if (!options.options.@"follow-log") {
input_thread = try .spawn(.{}, inputThreadRun, .{}); input_thread = try .spawn(.{}, inputThreadRun, .{});