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

Merge pull request #88 from adamdecaf/pandoc-install

cli: link to pandoc install steps
This commit is contained in:
Rodolfo Campos
2021-09-21 12:05:24 +02:00
committed by GitHub

View File

@@ -135,7 +135,7 @@ func notifyVersion(c *cli.Context) error {
} }
func pandocMustExist(c *cli.Context) error { func pandocMustExist(c *cli.Context) error {
eitherMustExistErr := fmt.Errorf("\n\nPlease install either Docker or the pandoc package and re-run `%s`. Find OS-specific pandoc installation instructions at: [TODO]", c.Command.Name) eitherMustExistErr := fmt.Errorf("\n\nPlease install either Docker or the pandoc package and re-run `%s`. Find OS-specific pandoc installation instructions at: https://pandoc.org/installing.html", c.Command.Name)
pandocExistErr, found, goodVersion, pdfLatex := pandocBinaryMustExist(c) pandocExistErr, found, goodVersion, pdfLatex := pandocBinaryMustExist(c)
dockerExistErr, inPath, isRunning := dockerMustExist(c) dockerExistErr, inPath, isRunning := dockerMustExist(c)