notnmeyer / tsk

A really, really simple task runner. Single binary, TOML task format.
MIT License
4 stars 0 forks source link

when using --list, show placeholder for .CLI_ARGS #85

Closed notnmeyer closed 1 month ago

notnmeyer commented 1 month ago

given,

[tasks.blah]
cads = ["echo {{.CLI_ARGS}}"]

tsk --list will show,

blah:
  commands:
    echo

it'd be better to see that there's a variable there that will be interpolated,

blah:
  commands:
    echo <ARGS>