aboutsummaryrefslogtreecommitdiff
path: root/content/pipelines/bounded.go
diff options
context:
space:
mode:
Diffstat (limited to 'content/pipelines/bounded.go')
-rw-r--r--content/pipelines/bounded.go2
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 {