Pull the latest changes for each repository

This commit is contained in:
Oliver Davies 2025-07-31 21:41:14 +01:00
parent 7020a76013
commit f91b6e4cbd
3 changed files with 41 additions and 5 deletions

View file

@ -1,7 +1,6 @@
package main
import (
"fmt"
"log"
"strings"
@ -19,20 +18,20 @@ func main() {
dirs := cfg.Directories
for _, dir := range dirs {
repositories, err := repositories.FindInDirectory(dir)
repositoryPaths, err := repositories.FindInDirectory(dir)
if err != nil {
// TODO
}
lines := strings.SplitSeq(repositories, "\n")
lines := strings.SplitSeq(repositoryPaths, "\n")
for repositoryPath := range lines {
if repositoryPath == "" {
continue
}
fmt.Println(repositoryPath)
repositories.Update(repositoryPath)
}
}
}