From 1b835085e645204847827cd274f7060dc31473ab Mon Sep 17 00:00:00 2001 From: lc Date: Sat, 2 May 2020 12:22:05 -0500 Subject: [PATCH] Add directory style support for templates --- internal/runner/runner.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/internal/runner/runner.go b/internal/runner/runner.go index 9a0073d3a..cff5a5a4e 100644 --- a/internal/runner/runner.go +++ b/internal/runner/runner.go @@ -126,7 +126,7 @@ func (r *Runner) RunEnumeration() { Unsorted: true, }) if err != nil { - gologger.Fatalf("Error, walking directory: '%s': %s\n", r.options.Templates, err) + gologger.Fatalf("Could not find templates in directory '%s': %s\n", r.options.Templates, err) } // 0 matches means no templates were found in directory if len(matches) == 0 {