diff --git a/.changes/unreleased/Fixes-20231125-224554.yaml b/.changes/unreleased/Fixes-20231125-224554.yaml new file mode 100644 index 00000000000..b526d357793 --- /dev/null +++ b/.changes/unreleased/Fixes-20231125-224554.yaml @@ -0,0 +1,6 @@ +kind: Fixes +body: Print change directory when dbt init +time: 2023-11-25T22:45:54.943283+09:00 +custom: + Author: jx2lee + Issue: "9041" diff --git a/core/dbt/events/types.py b/core/dbt/events/types.py index 123fd3d2596..06bfad0e0db 100644 --- a/core/dbt/events/types.py +++ b/core/dbt/events/types.py @@ -182,6 +182,7 @@ def message(self) -> str: f"Profile {self.name} written to {self.path} using target's " "profile_template.yml and your supplied values. Run 'dbt debug' to " "validate the connection." + f'\n\np.s change directories to "{self.name}" to use this project.' )