1
0
mirror of https://github.com/go-task/task.git synced 2025-01-12 04:34:11 +02:00

Fix a typo

This commit is contained in:
Seiichi Uchida 2019-08-21 13:42:19 +09:00
parent fac51dcf03
commit 8987cd64a0

View File

@ -30,8 +30,9 @@ func (c *Checksum) IsUpToDate() (bool, error) {
sources, err := globs(c.Dir, c.Sources)
if err != nil {
return false, nil
return false, err
}
newMd5, err := c.checksum(sources...)
if err != nil {
return false, nil