Skip to content
This repository was archived by the owner on Apr 15, 2024. It is now read-only.

Commit 4a87188

Browse files
committed
Fix typo in dbt_project name
1 parent e884248 commit 4a87188

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/pipelines.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -265,7 +265,7 @@ export const PipelineGenerateCommand = class extends TemplateGenerationCommand {
265265
// NOTE: It is common for dbt's templating (jinja2?) to collide with Lodash's templating syntax.
266266
// Current workaround is to exclude specific DBT & SQL files from templating
267267
const fileName = path.posix.basename(filepath);
268-
if (fileName === 'dbt_projects.yml' || fileName === 'dbt_project.yaml') {
268+
if (fileName === 'dbt_project.yml' || fileName === 'dbt_project.yaml') {
269269
// Allow templating in the main dbt project file
270270
return true;
271271
}

0 commit comments

Comments
 (0)