fix #59: processDir should call processFile instead.
This commit is contained in:
parent
0b3ad0d97c
commit
7edd326b95
@ -236,13 +236,7 @@ func (p *processor) processDir(inputDir string) error {
|
|||||||
}
|
}
|
||||||
|
|
||||||
filePath := filepath.Join(inputDir, item.Name())
|
filePath := filepath.Join(inputDir, item.Name())
|
||||||
allDec := common.GetDecoder(filePath, p.skipNoopDecoder)
|
if err := p.processFile(filePath); err != nil {
|
||||||
if len(allDec) == 0 {
|
|
||||||
logger.Info("skipping while no suitable decoder", zap.String("source", item.Name()))
|
|
||||||
continue
|
|
||||||
}
|
|
||||||
|
|
||||||
if err := p.process(filePath, allDec); err != nil {
|
|
||||||
logger.Error("conversion failed", zap.String("source", item.Name()), zap.Error(err))
|
logger.Error("conversion failed", zap.String("source", item.Name()), zap.Error(err))
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user