return err from listTemplates

This commit is contained in:
onyx-and-iris 2025-03-10 11:19:30 +00:00
parent eba8dd0113
commit 820ed2055b

View File

@ -50,7 +50,9 @@ func main() {
client := gignore.New(gignore.WithTemplateDirectory(templateDir)) client := gignore.New(gignore.WithTemplateDirectory(templateDir))
if list { if list {
listTemplates(client) if err := listTemplates(client); err != nil {
log.Fatalf("failed to list templates: %v", err)
}
return return
} }
@ -68,12 +70,13 @@ func main() {
fmt.Printf("√ created %s .gitignore file\n", args[0]) fmt.Printf("√ created %s .gitignore file\n", args[0])
} }
func listTemplates(client *gignore.GignoreClient) { func listTemplates(client *gignore.GignoreClient) error {
templates, err := client.List() templates, err := client.List()
if err != nil { if err != nil {
log.Fatalf("failed to list templates: %v", err) return err
} }
for _, template := range templates { for _, template := range templates {
fmt.Println(template) fmt.Println(template)
} }
return nil
} }