From afcdeaced691003789c825bd28ae6425e88b4cfe Mon Sep 17 00:00:00 2001 From: bwohl <65831594+bwohl@users.noreply.github.com> Date: Mon, 21 Nov 2022 23:21:36 +0100 Subject: [PATCH] fixed cli script --- src/pyvenus/scripts.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/pyvenus/scripts.py b/src/pyvenus/scripts.py index f4490ea..3704944 100644 --- a/src/pyvenus/scripts.py +++ b/src/pyvenus/scripts.py @@ -28,5 +28,6 @@ def pyvenus_setup(): if dir is not None: shutil.copytree( os.path.join(os.path.abspath(os.path.dirname(__file__)), "setup_files", dir), - os.getcwd() + os.getcwd(), + dirs_exist_ok=True )