add capture arg

This commit is contained in:
svlandeg 2021-02-02 19:47:12 +01:00
parent 91a3cab1ca
commit f852af2acf
1 changed files with 1 additions and 1 deletions

View File

@ -66,7 +66,7 @@ def project_run(
if subcommand in workflows:
msg.info(f"Running workflow '{subcommand}'")
for cmd in workflows[subcommand]:
project_run(project_dir, cmd, force=force, dry=dry)
project_run(project_dir, cmd, force=force, dry=dry, capture=capture)
else:
cmd = commands[subcommand]
for dep in cmd.get("deps", []):