From 4df4fcec478d49d9beca9e52256ed25e48c4bcb2 Mon Sep 17 00:00:00 2001 From: ge Date: Sun, 4 Jan 2026 16:16:46 +0300 Subject: [PATCH] fix: allow start ctx_watch without Command.cancel fn --- cmd.v | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd.v b/cmd.v index e894f4a..941850b 100644 --- a/cmd.v +++ b/cmd.v @@ -272,7 +272,7 @@ pub fn (mut c Command) start() !int { } } - if c.ctx != none && c.cancel != none { + if c.ctx != none { printdbg('${@METHOD}: start watching for context') go c.ctx_watch() }