X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=buildlog.go;h=a260867e8a5a7770fd830833fb2f6bcdcb7a8302;hb=d63dbd051c650ea69c42bc08dd6bba8baf661d65;hp=0564beda167552d9764e47cd979b142892fb572e;hpb=46e189a9c6398c1ab1245ab1e9827b959db29219;p=goredo.git diff --git a/buildlog.go b/buildlog.go index 0564bed..a260867 100644 --- a/buildlog.go +++ b/buildlog.go @@ -1,6 +1,6 @@ /* goredo -- djb's redo implementation on pure Go -Copyright (C) 2020-2021 Sergey Matveev +Copyright (C) 2020-2023 Sergey Matveev 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 @@ -76,7 +76,7 @@ func init() { } func parseBuildLogRec(dir, tgt string) (map[string][]string, error) { - fd, err := os.Open(path.Join(dir, RedoDir, tgt+LogSuffix+DepSuffix)) + fd, err := os.Open(path.Join(dir, RedoDir, tgt+LogRecSuffix)) if err != nil { return nil, err }