Compare commits

...

1 commit

Author SHA1 Message Date
Michiel Borkent
a3d606d93c wip [skip ci] 2024-10-30 11:05:04 +01:00
4 changed files with 7 additions and 3 deletions

@ -1 +1 @@
Subproject commit 5160f98666363afeeea9f728d12e7f0fd39263cd
Subproject commit c53bb2e65194f7b939df3e83861f962b0844836d

2
sci

@ -1 +1 @@
Subproject commit c6be02242f455271ce24bcc25a431455b4de2cb4
Subproject commit 6d9380f55b3038769d5856fc67e7d7939ac981ef

View file

@ -48,4 +48,5 @@
'destroy-tree (copy-var process/destroy-tree tns)
'exec (copy-var exec tns)
'shell (copy-var shell tns)
'alive? (copy-var process/alive? tns)})
'alive? (copy-var process/alive? tns)
'concurrently (copy-var process/concurrently tns)})

View file

@ -225,6 +225,9 @@
(when-not (resolve 'shell)
(intern *ns* 'shell babashka.tasks/shell))
(when-not (resolve 'concurrently)
(intern *ns* 'concurrently babashka.process/concurrently))
(when-not (resolve 'current-task)
(intern *ns* 'current-task babashka.tasks/current-task))