When running dbt with descendants, I would like to exclude two models. I can exclude one model like so:
dbt run ga4_update_set+ --exclude nz_daily_cohorts
The above works as expected.
I tried the following to exclude multiple models.
dbt run ga4_update_set+ --exclude nz_daily_cohorts,growth_scorecard
In this case neither nz_daily_cohorts nor growth_scorecard were excluded.
Then tried:
dbt run ga4_update_set+ --exclude nz_daily_cohorts --exclude growth_scorecard
Again, in this case neither nz_daily_cohorts nor growth_scorecard were excluded.
How can I run dbt run ga4_update_set+
but also exclude both nz_daily_cohorts
and growth_scorecard
?