Skip to content

Commit 5b4296a

Browse files
authored
Merge pull request #1363 from jaceksan/dx-339-fix-gooddata-dbt-cli
fix(gooddata-dbt): restore CLI entrypoint resolution
2 parents a76d1a3 + f9395ea commit 5b4296a

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

packages/gooddata-dbt/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ classifiers = [
3232
]
3333

3434
[project.scripts]
35-
gooddata-dbt = "gooddata_dbt.main:main"
35+
gooddata-dbt = "gooddata_dbt.dbt_plugin:main"
3636

3737
[dependency-groups]
3838
test = [
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
# (C) 2026 GoodData Corporation
2+
"""Compatibility entrypoint for the gooddata-dbt console script."""
3+
4+
from gooddata_dbt.dbt_plugin import main
5+
6+
__all__ = ["main"]

0 commit comments

Comments
 (0)