fix(cmdeploy): add __call__ to LocalExec so status works with @local

This commit is contained in:
j4n
2026-02-16 19:18:43 +01:00
parent cc779ec04f
commit 9f6de19121

View File

@@ -89,6 +89,11 @@ class LocalExec:
self.verbose = verbose
self.docker = docker
def __call__(self, call, kwargs=None, log_callback=None):
if kwargs is None:
kwargs = {}
return call(**kwargs)
def logged(self, call, kwargs: dict):
where = "locally"
if self.docker: