create subfolder in working dir

This commit is contained in:
svlandeg 2020-06-29 17:46:08 +02:00
parent 3487214ba1
commit efe7eb71f2

View File

@ -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)