mirror of
https://github.com/strongdm/comply
synced 2024-11-05 23:45:25 +00:00
handling errors when pandoc is missing (#100)
This commit is contained in:
parent
34c0105b47
commit
b1e88ea919
@ -87,6 +87,8 @@ func dockerPandoc(outputFilename string, errOutputCh chan error) {
|
||||
errOutputCh <- errors.Wrap(err, "output not generated; verify your Docker image is up to date")
|
||||
return
|
||||
}
|
||||
|
||||
errOutputCh <- nil
|
||||
}
|
||||
|
||||
// 🐼
|
||||
|
@ -26,6 +26,12 @@ func pdf(output string, live bool, errCh chan error, wg *sync.WaitGroup) {
|
||||
}
|
||||
for _, policy := range policies {
|
||||
renderToFilesystem(&pdfWG, errOutputCh, data, policy, live)
|
||||
err = <-errOutputCh
|
||||
if err != nil {
|
||||
errCh <- err
|
||||
wg.Done()
|
||||
return
|
||||
}
|
||||
}
|
||||
|
||||
narratives, err := model.ReadNarratives()
|
||||
|
Loading…
Reference in New Issue
Block a user