Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
b-per committed Sep 29, 2023
1 parent 60442b7 commit a6b792f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbt_meshify/dbt.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def invoke(
result = self.dbt_runner.invoke(runner_args if runner_args else [])
if not result.success and result.exception:
if isinstance(result.exception, UninstalledPackagesFoundError):
logger.debug("Project missing packages, running dbt clean and deps...")
logger.debug("Project missing packages, running dbt clean and dbt deps...")
self.dbt_runner.invoke(["clean"])
self.dbt_runner.invoke(["deps"])
result = self.dbt_runner.invoke(runner_args if runner_args else [])
Expand Down

0 comments on commit a6b792f

Please sign in to comment.