Bugfixes
This commit is contained in:
parent
fc04c86d86
commit
4b36ade9bb
17
goldsmith.go
17
goldsmith.go
@ -189,23 +189,26 @@ func (gs *goldsmith) chain(s *stage, p Plugin) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if proc, ok := p.(Processor); ok {
|
accept, _ := p.(Accepter)
|
||||||
|
proc, _ := p.(Processor)
|
||||||
|
|
||||||
var wg sync.WaitGroup
|
var wg sync.WaitGroup
|
||||||
for file := range s.input {
|
for file := range s.input {
|
||||||
|
if file.Err != nil || proc == nil || (accept != nil && !accept.Accept(file)) {
|
||||||
|
s.output <- file
|
||||||
|
} else {
|
||||||
|
wg.Add(1)
|
||||||
go func(f *File) {
|
go func(f *File) {
|
||||||
defer wg.Done()
|
defer wg.Done()
|
||||||
if proc.Process(s, f) {
|
if proc.Process(s, f) {
|
||||||
s.output <- f
|
s.output <- f
|
||||||
|
} else {
|
||||||
|
gs.decFiles()
|
||||||
}
|
}
|
||||||
}(file)
|
}(file)
|
||||||
}
|
}
|
||||||
|
}
|
||||||
wg.Wait()
|
wg.Wait()
|
||||||
} else {
|
|
||||||
for file := range s.input {
|
|
||||||
s.output <- file
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if fin, ok := p.(Finalizer); ok {
|
if fin, ok := p.(Finalizer); ok {
|
||||||
s.err = fin.Finalize(s)
|
s.err = fin.Finalize(s)
|
||||||
|
Loading…
Reference in New Issue
Block a user