In the dbt prefect bigquery workflow, the first command in the list (pwd) fails because it's not a dbt command. Every command in the DbtCoreOperation is presumed to be a valid dbt command and --profiles-dir and --project-dir are appended during command run. when you append the commands to the bash command pwd (e.g pwd --profiles-dir /some/dir --project-dir /some/dir) it fails because it treats the appends as flags.
Weirdly, this does not trigger the task to fail. It only shows on the logs as an info. See screenshot below
