]> Cypherpunks.ru repositories - goredo.git/blobdiff - sources.go
Inode information printing helper
[goredo.git] / sources.go
index 1fd4c9d0ac0bca059719e301e62224530b6392a4..b11d9dfb60cfcf3f3e7913d94a90fa47a9ce7ff5 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-2022 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))