mirror of
https://github.com/go-task/task.git
synced 2025-11-23 22:24:45 +02:00
Fix a bug when the checksum up-to-date resolution is used by a task with a custom label: attribute
Closes #412 Co-authored-by: Adam Wasila <adam.wasila@gmail.com>
This commit is contained in:
@@ -2,6 +2,9 @@
|
|||||||
|
|
||||||
## Unreleased
|
## 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
|
- Starting from this release, we're releasing official ARMv6 and ARM64 binaries
|
||||||
for Linux
|
for Linux
|
||||||
([#375](https://github.com/go-task/task/issues/375), [#418](https://github.com/go-task/task/issues/418)).
|
([#375](https://github.com/go-task/task/issues/375), [#418](https://github.com/go-task/task/issues/418)).
|
||||||
|
|||||||
@@ -77,7 +77,7 @@ func (e *Executor) timestampChecker(t *taskfile.Task) status.Checker {
|
|||||||
func (e *Executor) checksumChecker(t *taskfile.Task) status.Checker {
|
func (e *Executor) checksumChecker(t *taskfile.Task) status.Checker {
|
||||||
return &status.Checksum{
|
return &status.Checksum{
|
||||||
Dir: t.Dir,
|
Dir: t.Dir,
|
||||||
Task: t.Task,
|
Task: t.Name(),
|
||||||
Sources: t.Sources,
|
Sources: t.Sources,
|
||||||
Generates: t.Generates,
|
Generates: t.Generates,
|
||||||
Dry: e.Dry,
|
Dry: e.Dry,
|
||||||
|
|||||||
Reference in New Issue
Block a user