From b50a4d7ac4b0b76218c8c996f46a9a06377bcb20 Mon Sep 17 00:00:00 2001 From: Bruno Bernardino Date: Fri, 2 Jan 2026 10:14:33 +0000 Subject: [PATCH] Remove unnecessary comments --- fresh.config.ts | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fresh.config.ts b/fresh.config.ts index 02af8cd..19de787 100644 --- a/fresh.config.ts +++ b/fresh.config.ts @@ -8,10 +8,9 @@ const isBuildMode = Deno.args.includes('build'); async function notifyServiceManagerReady() { const socketAddress = Deno.env.get('NOTIFY_SOCKET'); if (typeof socketAddress !== 'string') { - return; // Service manager doesn’t expect any messages + return; } - // Send message using `systemd-notify` util until the native Deno APIs become stable const result = await (new Deno.Command('systemd-notify', { args: ['--ready', `MESSAGE=bewCloud is ready`], })).output();