mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
Proper handling of 404 page return value
This commit is contained in:
parent
7468292c4e
commit
5e14af957a
1 changed files with 3 additions and 1 deletions
|
@ -539,7 +539,9 @@ func (s *Site) RenderHomePage() error {
|
|||
return err
|
||||
}
|
||||
err = s.WritePublic("404.html", x)
|
||||
return err
|
||||
if err != nil {
|
||||
return err
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
|
|
Loading…
Reference in a new issue