From 5168e54af7ff071294c9590a53132fe887771537 Mon Sep 17 00:00:00 2001 From: Andrey Nering Date: Sat, 7 Oct 2023 18:59:20 -0300 Subject: [PATCH] chore: add changelog entry for #1343 --- CHANGELOG.md | 1 + testdata/list_desc_interpolation/Taskfile.yml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 119adac8..7d533146 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,7 @@ have been reaching this limit organically now that we have loops. This check exists to detect recursive calls, but will be removed in favor of a better algorithm soon (#1321, #1332). +- Fixed templating on descriptions on `task --list` (#1343 by @blackjid). ## v3.30.1 - 2023-09-14 diff --git a/testdata/list_desc_interpolation/Taskfile.yml b/testdata/list_desc_interpolation/Taskfile.yml index 71aaafe1..63c0bd10 100644 --- a/testdata/list_desc_interpolation/Taskfile.yml +++ b/testdata/list_desc_interpolation/Taskfile.yml @@ -1,8 +1,8 @@ version: '3' vars: - foo: bar + FOO: bar tasks: foo: - desc: "task has desc with {{ .foo }} var" + desc: "task has desc with {{.FOO}} var"