Skip to content

Commit d64bdd8

Browse files
improve path handling
1 parent c2166f6 commit d64bdd8

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

exasol_transformers_extension/deployment/script_deployment_queries.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ def write_create_sql_script(self, script_path):
6969
for constant_set in install_scripts_constants:
7070
queries = queries | self.make_script_deployment_queries(constant_set)
7171

72-
with open(script_path, "w") as create_script:
72+
with open(script_path, "w+") as create_script:
7373
create_script.write(
7474
"-- this script is created automatically. Call 'write_create_script' if you need to update it.\n\n"
7575
)

0 commit comments

Comments
 (0)