We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c028fd commit 94a3498Copy full SHA for 94a3498
resources/src/gcp_cloud_sql.py
@@ -329,7 +329,7 @@ def path(self) -> Path:
329
330
def execute(self, sql_executor: SqlExecutor) -> None:
331
if self._post_process:
332
- escaped_file: Path = self._path.parent / ('.' + self._path.name + '.escaped')
+ escaped_file: Path = Path('/tmp') / self._path.name
333
template: Template = Environment().from_string(open(self._path, 'r').read(), globals=self._context)
334
with escaped_file.open(mode='w') as f:
335
f.write(template.render(self._context))
0 commit comments