fix: don't force exit when processFile fails.

This commit is contained in:
鲁树人 2024-10-08 21:59:47 +01:00
parent 2abdd47c9c
commit 2afc232eb1

View File

@ -247,7 +247,7 @@ func (p *processor) processDir(inputDir string) error {
func (p *processor) processFile(filePath string) error { func (p *processor) processFile(filePath string) error {
allDec := common.GetDecoder(filePath, p.skipNoopDecoder) allDec := common.GetDecoder(filePath, p.skipNoopDecoder)
if len(allDec) == 0 { if len(allDec) == 0 {
logger.Fatal("skipping while no suitable decoder") return errors.New("skipping while no suitable decoder")
} }
if err := p.process(filePath, allDec); err != nil { if err := p.process(filePath, allDec); err != nil {