hey all ! i'm running into this issue where every ...
# troubleshooting
d
hey all ! i'm running into this issue where every time i execute a
dbt-redshift
command e.g.
dbt-redshift run
, it always executes
dbt deps
and
dbt clean
prior to running the
dbt run
command - has anyone experienced this or does anyone know how to stop this from happening at the invocation of every
dbt
command ? my setup in
meltano.yml
Copy code
utilities:
  - name: dbt-redshift
    variant: dbt-labs
    pip_url: dbt-core==1.7.13 dbt-redshift==1.7.7 pytz==2021.1 git+<https://github.com/meltano/dbt-ext.git@main>
nvm i got this resolved !
m
skip_pre_invoke
setting IIRC
although, sounds like you found that?
d
yup i did, thanks Matt!
🙌 1