1
0
mirror of https://github.com/strongdm/comply synced 2024-07-02 23:14:22 +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
No known key found for this signature in database
GPG Key ID: 900437410E142A48

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)
}