JakobOvrum / bootDoc

Theme for the DDoc documentation generator
Other
36 stars 7 forks source link

Unbreak parallel mode and make the generator continue regardless of errors. #29

Closed alexrp closed 11 years ago

alexrp commented 11 years ago

Parallel mode was broken because a break was put into the parallel loop for some reason (this is not legal). Also, the generator script's behavior was changed to stop generating docs if documentation generation for one module failed. I believe it's better to continue generating for all modules and return the first error code encountered during generation (this is what my build system depends on and this obviously broke when this behavior changed).

JakobOvrum commented 11 years ago

Sorry for breaking it, I was trying to make it report errors properly instead of just ignoring them.

Thanks for fixing it!