Closed jigarius closed 1 year ago
I can't reproduce it in the Docker setup for this project. The next time it happens, I'll document it with more context.
Finally! I think I found the answer.
drall exec
command.drall exec
command has a variadic argument cmd
.--drall-*
parameters must be passed right after drall exec
.# Won't work
drall exec drush st --field=site --drall-filter=default
# Will work
drall exec --drall-filter=default drush st --field=site
I'll simply document this in the README and that should be it.
Motivation
Depending on where we write
--drall-*
options, Symfony Console, Drall commands do not receive the--drall-*
options. We need to figure out exactly what's going on and document it in theREADME
.