mirror of
https://github.com/onyx-and-iris/gignore.git
synced 2025-04-03 04:03:53 +01:00
return err from listTemplates
This commit is contained in:
parent
eba8dd0113
commit
820ed2055b
@ -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
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user