From a722244a92a733a77541d1398a252d73f48dff18 Mon Sep 17 00:00:00 2001 From: vorotamoroz Date: Sat, 1 Aug 2026 06:20:47 +0000 Subject: [PATCH] fix(cli): replace the headless log handler --- src/apps/cli/main.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/apps/cli/main.ts b/src/apps/cli/main.ts index f1fa57af..442621dd 100644 --- a/src/apps/cli/main.ts +++ b/src/apps/cli/main.ts @@ -410,7 +410,7 @@ export async function main( if (!options.verbose) return; } writeStderrLine(standardIo, prefix, message); - }); + }, true); // Prevent replication result from being processed automatically in non-daemon commands. // In daemon mode the default handler must run so changes are applied to the filesystem. if (options.command !== "daemon") {