]> Cypherpunks.ru repositories - goredo.git/blobdiff - sources.go
Redundant @documentencoding
[goredo.git] / sources.go
index 1fd4c9d0ac0bca059719e301e62224530b6392a4..f57dbaf3b37f49324ec5a54dac3008051dad16ff 100644 (file)
@@ -1,6 +1,6 @@
 /*
 goredo -- djb's redo implementation on pure Go
-Copyright (C) 2020-2021 Sergey Matveev <stargrave@stargrave.org>
+Copyright (C) 2020-2023 Sergey Matveev <stargrave@stargrave.org>
 
 This program is free software: you can redistribute it and/or modify
 it under the terms of the GNU General Public License as published by
@@ -41,6 +41,9 @@ func sourcesWalker(tgts []string) ([]string, error) {
                }
                depInfo, err := depRead(fdDep)
                fdDep.Close()
+               if err != nil {
+                       return nil, err
+               }
                for _, m := range depInfo.ifchanges {
                        depTgt := m["Target"]
                        depTgtAbsPath, err := filepath.Abs(path.Join(cwd, depTgt))