diff --git a/CHANGELOG.md b/CHANGELOG.md index 34b6dd88..12e5edba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,9 @@ ## Unreleased +- Fix a bug when the checksum up-to-date resolution is used by a task + with a custom `label:` attribute + ([#412](https://github.com/go-task/task/issues/412)). - Starting from this release, we're releasing official ARMv6 and ARM64 binaries for Linux ([#375](https://github.com/go-task/task/issues/375), [#418](https://github.com/go-task/task/issues/418)). diff --git a/status.go b/status.go index 855a60f1..9e2ad1a5 100644 --- a/status.go +++ b/status.go @@ -77,7 +77,7 @@ func (e *Executor) timestampChecker(t *taskfile.Task) status.Checker { func (e *Executor) checksumChecker(t *taskfile.Task) status.Checker { return &status.Checksum{ Dir: t.Dir, - Task: t.Task, + Task: t.Name(), Sources: t.Sources, Generates: t.Generates, Dry: e.Dry,