Skip to content

Commit c0260df

Browse files
committed
fix: pass dirs_exist_ok=True to shutil.copytree()
1 parent 3560341 commit c0260df

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

src/claranet_tfwrapper/__init__.py

+3-4
Original file line numberDiff line numberDiff line change
@@ -514,11 +514,10 @@ def bootstrap(wrapper_config):
514514
else:
515515
template = "{}/basic".format(stack_type)
516516

517-
# shutil.copytree()'s dirs_exist_ok is new in python 3.8
518-
if os.path.isdir(stack_path):
519-
os.rmdir(stack_path)
520517
template_path = template if os.path.isdir(template) else f"{rootdir}/templates/{template}"
521-
shutil.copytree(template_path, stack_path, ignore=shutil.ignore_patterns("state.tf", ".terraform"))
518+
shutil.copytree(
519+
template_path, stack_path, ignore=shutil.ignore_patterns("state.tf", ".terraform"), dirs_exist_ok=True
520+
)
522521
logger.info("Bootstrapped stack using template {}.".format(template))
523522
else:
524523
logger.info("No template specified and no cloud provider defined in configuration, skipping.")

0 commit comments

Comments
 (0)