restore previous functionality with new processing system

This commit is contained in:
Daniel Fichtinger 2025-03-18 00:15:59 -04:00
parent 65b62ef9a6
commit 116fb6a883
3 changed files with 14 additions and 2 deletions

View file

@ -43,9 +43,17 @@ func main() {
}
settings := builder.GetSettings(*rootPath, "foobar")
// err := builder.Traverse(*rootPath, "foobar", settings)
// traverse the source and process file metadata
pm, err := builder.ProcessTraverse(*rootPath, "foobar", settings)
if err != nil {
fmt.Printf("Error: %s\n", err.Error())
os.Exit(1)
}
err = builder.BuildProcessedFiles(pm, settings)
if err != nil {
fmt.Printf("Error: %s\n", err.Error())
os.Exit(1)
}
fmt.Printf("%#v", pm)
}