mirror of
https://github.com/gohugoio/hugo.git
synced 2025-03-11 01:13:24 +00:00
hugolib: Bug fix futureStats
This commit is contained in:
parent
4724a5794e
commit
32c0e3fd1f
1 changed files with 1 additions and 1 deletions
|
@ -2162,7 +2162,7 @@ func (s *Site) futureStats() string {
|
||||||
case 1:
|
case 1:
|
||||||
msg = "1 future rendered"
|
msg = "1 future rendered"
|
||||||
default:
|
default:
|
||||||
msg = fmt.Sprintf("%d future rendered", s.draftCount)
|
msg = fmt.Sprintf("%d future rendered", s.futureCount)
|
||||||
}
|
}
|
||||||
|
|
||||||
if viper.GetBool("BuildFuture") {
|
if viper.GetBool("BuildFuture") {
|
||||||
|
|
Loading…
Reference in a new issue