From 022fd7b0d5edb5c636e01d1b0859bedeca182824 Mon Sep 17 00:00:00 2001 From: Adam Shannon Date: Mon, 4 May 2020 10:55:32 -0500 Subject: [PATCH] cli: link to pandoc install steps Issue: https://github.com/strongdm/comply/issues/87 --- internal/cli/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/cli/app.go b/internal/cli/app.go index 09f8b50..cb7ef92 100644 --- a/internal/cli/app.go +++ b/internal/cli/app.go @@ -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)