Skip to content

Commit 918e48b

Browse files
bug fix
1 parent 789027c commit 918e48b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exasol/toolbox/tools/template.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def update_template(
139139
) -> None:
140140
"""Similar to install but checks for existing templates and shows diff"""
141141
if not dest.exists():
142-
dest.mkdir()
142+
dest.mkdir(parents=True)
143143

144144
try:
145145
templates = _select_templates(template, pkg, template_type)

0 commit comments

Comments
 (0)