From efe7eb71f2e3949f41bacbcc390177243fc4c727 Mon Sep 17 00:00:00 2001 From: svlandeg Date: Mon, 29 Jun 2020 17:46:08 +0200 Subject: [PATCH] create subfolder in working dir --- spacy/cli/project.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/spacy/cli/project.py b/spacy/cli/project.py index 1196eb3dd..7470e23ea 100644 --- a/spacy/cli/project.py +++ b/spacy/cli/project.py @@ -82,6 +82,8 @@ def project_clone_cli( initializing DVC (Data Version Control). This allows DVC to integrate with Git. """ + if dest == Path.cwd(): + dest = dest / name project_clone(name, dest, repo=repo, git=git, no_init=no_init)