mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-14 20:33:59 +02:00
commands: Fix build logic when listing expired/future draft content
Fixes #10972
This commit is contained in:
@@ -73,7 +73,11 @@ func newListCommand() *listCommand {
|
||||
p.PublishDate().Format(time.RFC3339)}
|
||||
|
||||
}
|
||||
return list(cd, r, createRecord, "buildDrafts", true)
|
||||
return list(cd, r, createRecord,
|
||||
"buildDrafts", true,
|
||||
"buildFuture", true,
|
||||
"buildExpired", true,
|
||||
)
|
||||
},
|
||||
},
|
||||
&simpleCommand{
|
||||
@@ -91,7 +95,10 @@ func newListCommand() *listCommand {
|
||||
}
|
||||
|
||||
}
|
||||
return list(cd, r, createRecord, "buildFuture", true)
|
||||
return list(cd, r, createRecord,
|
||||
"buildFuture", true,
|
||||
"buildDrafts", true,
|
||||
)
|
||||
},
|
||||
},
|
||||
&simpleCommand{
|
||||
@@ -109,7 +116,10 @@ func newListCommand() *listCommand {
|
||||
}
|
||||
|
||||
}
|
||||
return list(cd, r, createRecord, "buildExpired", true)
|
||||
return list(cd, r, createRecord,
|
||||
"buildExpired", true,
|
||||
"buildDrafts", true,
|
||||
)
|
||||
},
|
||||
},
|
||||
&simpleCommand{
|
||||
|
Reference in New Issue
Block a user