diff options
Diffstat (limited to 'cmd/krino/check.go')
| -rw-r--r-- | cmd/krino/check.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/cmd/krino/check.go b/cmd/krino/check.go index 1820bbe..dfe3a1a 100644 --- a/cmd/krino/check.go +++ b/cmd/krino/check.go @@ -36,6 +36,9 @@ func cmdCheck(g *globals, args []string, stdout, stderr io.Writer) int { if dr.Missing { fmt.Fprintf(stdout, " warning: %s is not a directory right now; it will be skipped\n", xdg.Abbrev(dr.Dir.Root)) } + for _, x := range dr.Dir.Excludes { + fmt.Fprintf(stdout, " %s\n", x.Text) + } if len(dr.Dir.Rules) == 0 { fmt.Fprintln(stdout, " no rules yet") } |
