From f852af2acff3afd5b797b4a893f08cbd4bc3963c Mon Sep 17 00:00:00 2001 From: svlandeg Date: Tue, 2 Feb 2021 19:47:12 +0100 Subject: [PATCH] add capture arg --- spacy/cli/project/run.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spacy/cli/project/run.py b/spacy/cli/project/run.py index 28ac3c24e..17c881595 100644 --- a/spacy/cli/project/run.py +++ b/spacy/cli/project/run.py @@ -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", []):