Print the command including the arguments
Closed this issue · 0 comments
Hentioe commented
When outputting task commands, would it be more reasonable to display the arguments?
For example:
[tasks.dev-env]
run = "docker compose -f docker-compose.dev.yml"
Run it:
mise run dev-env up -d
Current output:
[dev-env] $ docker compose -f docker-compose.dev.yml
...
The actual command to run (should include arguments):
[dev-env] $ docker compose -f docker-compose.dev.yml up -d
...