dbt cli --select behaviour

The problem I’m having

dbt seed --select seed1.csv --select seed2.csv only loads seed2 and skips seed1
dbt seed --select seed1.csv seed2.csv loads both seeds

If I read Syntax overview | dbt Developer Hub correctly, both should work the same

The context of why I’m trying to do this

What I’ve already tried

Some example code or error messages

Put code inside backticks
  to preserve indentation
    which is especially important 
      for Python and YAML! 

Hi @pauwel

You just use the --select flag once in your command. You can select multiple models by separating them by spaces as you did

Now in dbt 1.5 it seems you can use multiple select flags