You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@airflow.apache.org by GitBox <gi...@apache.org> on 2022/10/31 03:22:42 UTC

[GitHub] [airflow] potiuk commented on a diff in pull request #27108: Create path for downloaded dbt artefact (#27107)

potiuk commented on code in PR #27108:
URL: https://github.com/apache/airflow/pull/27108#discussion_r1009000377


##########
airflow/providers/dbt/cloud/operators/dbt.py:
##########
@@ -212,7 +214,7 @@ def execute(self, context: Context) -> None:
         response = hook.get_job_run_artifact(
             run_id=self.run_id, path=self.path, account_id=self.account_id, step=self.step
         )
-
+        Path(self.output_file_name).parent.mkdir(parents=True, exist_ok=True)

Review Comment:
   yes.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@airflow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org