2 Commits

Author SHA1 Message Date
ge
acd7a0cfc6 mod: bump version 2026-01-04 16:19:14 +03:00
ge
4df4fcec47 fix: allow start ctx_watch without Command.cancel fn 2026-01-04 16:16:46 +03:00
2 changed files with 2 additions and 2 deletions

2
cmd.v
View File

@@ -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()
}

2
v.mod
View File

@@ -1,7 +1,7 @@
Module {
name: 'runcmd'
description: 'Run external commands'
version: '0.2.0'
version: '0.2.1'
license: 'Unlicense'
repo_url: 'https://github.com/gechandesu/runcmd'
dependencies: []