ref: d0d24b433762c4c0b1ddd8e25ed7f10877427170
parent: f0af80753c85d7f06fdebdc451ac2b3c69cca85c
author: Bjørn Erik Pedersen <[email protected]>
date: Wed Oct 19 16:08:57 EDT 2016
commands: Do not print error on missing unknown dirs See #2602
--- a/commands/hugo.go
+++ b/commands/hugo.go
@@ -599,6 +599,11 @@
return nil
}
+ if os.IsNotExist(err) {
+ // Ignore.
+ return nil
+ }
+
jww.ERROR.Println("Walker: ", err)
return nil
}