You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Variable interpolation works well, but it seems that desc: does not support interpolation for neither vars: or env: variables that are "dynamically" generated (or more likely vars: and env: are not computed before desc: interpolation happens?). I am looking for this to try to make my tasks a little more generic... (similar to #276 but not limited to Golang templates)
The text was updated successfully, but these errors were encountered:
@itnok in desc (and prompt), you can interpolate static variables but not dynamic variables. This is intentional, mainly for better performance, as this command is used for autocomplete.
Taskfile.yaml
to reproduce the issue:Expected output:
Output:
Variable interpolation works well, but it seems that
desc:
does not support interpolation for neithervars:
orenv:
variables that are "dynamically" generated (or more likelyvars:
andenv:
are not computed beforedesc:
interpolation happens?). I am looking for this to try to make my tasks a little more generic... (similar to #276 but not limited to Golang templates)The text was updated successfully, but these errors were encountered: