X-Git-Url: http://www.git.cypherpunks.ru/?a=blobdiff_plain;f=buildlog.go;h=cdbf6ba2ec0595f90f782d41a5cc3827293b82ce;hb=f0f007ed9bb046289965d2a7e64f215e4a50a441;hp=0564beda167552d9764e47cd979b142892fb572e;hpb=46e189a9c6398c1ab1245ab1e9827b959db29219;p=goredo.git diff --git a/buildlog.go b/buildlog.go index 0564bed..cdbf6ba 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-2022 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 }