Closed veewee closed 5 months ago
next
Provide a task that makes it possible to run Symfony's bin/console with a specific command:
bin/console
tasks: symfony_console: command: [ "lint:container", "-vvv"]
This will run : "./bin/console" "lint:container" "-vvv"
"./bin/console" "lint:container" "-vvv"
If the command fails (non-zero exit code), the grumphp task fails.
Running multiple symfony console commands (in parallel) is already covered:
tasks: lint-container: command: [ "lint:container", "-vvv"] metadata: task: symfony_console
Closing for now, we'll continue in the PR.
next
Provide a task that makes it possible to run Symfony's
bin/console
with a specific command:This will run :
"./bin/console" "lint:container" "-vvv"
If the command fails (non-zero exit code), the grumphp task fails.
Running multiple symfony console commands (in parallel) is already covered: