ci(lint): fix missing error handling

This commit is contained in:
Julien Neuhart
2025-02-06 08:51:38 +01:00
parent 198d9115cc
commit f0c1952dfe

View File

@@ -477,6 +477,9 @@ func (ctx *Context) BuildOutputFile() (string, error) {
} }
return f return f
}()) }())
if err != nil {
return "", fmt.Errorf("create files info: %w", err)
}
archivePath := ctx.GeneratePath(".zip") archivePath := ctx.GeneratePath(".zip")
out, err := os.Create(archivePath) out, err := os.Create(archivePath)