fix: don't force exit when `processFile` fails.

pull/100/head
鲁树人 1 month ago
parent 2abdd47c9c
commit 2afc232eb1

@ -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 {

Loading…
Cancel
Save