From 45b84fa637e7746f8e52e2f236f2f1634c9d9ad0 Mon Sep 17 00:00:00 2001 From: sevkw <92108767+sevkw@users.noreply.github.com> Date: Wed, 16 Feb 2022 23:44:17 -0500 Subject: [PATCH] Update 2b-create-a-project-dbt-cli.md the dbt debug command was quite outdated, and after researching this issue https://github.com/dbt-labs/dbt-core/issues/1733 I found the correct dbt debug should be dbt debug --project-dir= --- website/docs/tutorial/2b-create-a-project-dbt-cli.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/tutorial/2b-create-a-project-dbt-cli.md b/website/docs/tutorial/2b-create-a-project-dbt-cli.md index 1582eb70584..603d426c2cd 100644 --- a/website/docs/tutorial/2b-create-a-project-dbt-cli.md +++ b/website/docs/tutorial/2b-create-a-project-dbt-cli.md @@ -102,7 +102,7 @@ jaffle_shop: # this needs to match the profile: in your dbt_project.yml file 4. Execute the debug command from your project to confirm that you can successfully connect ```shell-session -$ dbt debug +$ dbt debug --project-dir= ``` Confirm that the last line of the output is `Connection test: OK connection ok`.