1
0
mirror of https://github.com/strongdm/comply synced 2024-06-30 22:14:22 +00:00

cli: link to pandoc install steps

Issue: https://github.com/strongdm/comply/issues/87
This commit is contained in:
Adam Shannon 2020-05-04 10:55:32 -05:00
parent c5a1bd804b
commit 022fd7b0d5

View File

@ -135,7 +135,7 @@ func notifyVersion(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)
dockerExistErr, inPath, isRunning := dockerMustExist(c)