diff --git a/spacy/cli/project.py b/spacy/cli/project.py index ce7c30fb4..59c515dcb 100644 --- a/spacy/cli/project.py +++ b/spacy/cli/project.py @@ -525,7 +525,7 @@ def update_dvc_config( continue # Default to "." as the project path since dvc.yaml is auto-generated # and we don't want arbitrary paths in there - project_cmd = ["python", "-m", NAME, "project", "exec", ".", name] + project_cmd = ["python", "-m", NAME, "project", ".", "exec", name] deps_cmd = [c for cl in [["-d", p] for p in deps] for c in cl] outputs_cmd = [c for cl in [["-o", p] for p in outputs] for c in cl] outputs_nc_cmd = [c for cl in [["-O", p] for p in outputs_no_cache] for c in cl]