1
0
mirror of https://github.com/strongdm/comply synced 2025-12-06 06:14:09 +00:00

config override should cause image to be pulled

This commit is contained in:
Justin McCarthy
2018-06-01 17:04:52 -07:00
parent 4d830789ec
commit 2d5e6b48cb

View File

@@ -114,7 +114,7 @@ func pandocMustExist(c *cli.Context) error {
}
// if we don't have pandoc, but we do have docker, execute a pull
if pandocExistErr != nil && dockerExistErr == nil {
if (pandocExistErr != nil && dockerExistErr == nil) || config.WhichPandoc() == config.UseDocker {
dockerPull(c)
}