diff options
Diffstat (limited to 'content/pipelines/bounded.go')
-rw-r--r-- | content/pipelines/bounded.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/content/pipelines/bounded.go b/content/pipelines/bounded.go index 90eed08..3936a29 100644 --- a/content/pipelines/bounded.go +++ b/content/pipelines/bounded.go @@ -25,7 +25,7 @@ func walkFiles(done <-chan struct{}, root string) (<-chan string, <-chan error) if err != nil { return err } - if info.IsDir() { + if !info.Mode().IsRegular() { return nil } select { |