Skip to content

Commit

Permalink
commands: Fix build logic when listing expired/future draft content
Browse files Browse the repository at this point in the history
Fixes #10972
  • Loading branch information
bep committed May 21, 2023
1 parent 2637b4e commit e6dc805
Show file tree
Hide file tree
Showing 2 changed files with 30 additions and 3 deletions.
16 changes: 13 additions & 3 deletions commands/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand All @@ -91,7 +95,10 @@ func newListCommand() *listCommand {
}

}
return list(cd, r, createRecord, "buildFuture", true)
return list(cd, r, createRecord,
"buildFuture", true,
"buildDrafts", true,
)
},
},
&simpleCommand{
Expand All @@ -109,7 +116,10 @@ func newListCommand() *listCommand {
}

}
return list(cd, r, createRecord, "buildExpired", true)
return list(cd, r, createRecord,
"buildExpired", true,
"buildDrafts", true,
)
},
},
&simpleCommand{
Expand Down
17 changes: 17 additions & 0 deletions testscripts/commands/list.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,17 +3,23 @@
hugo list drafts
! stderr .
stdout 'draft.md,2019-01-01T00:00:00Z'
stdout 'draftexpired.md,2018-01-01T00:00:00Z'
stdout 'draftfuture.md,2030-01-01T00:00:00Z'

hugo list future
stdout 'future.md,2030-01-01T00:00:00Z'
stdout 'draftfuture.md,2030-01-01T00:00:00Z'

hugo list expired
stdout 'expired.md,2018-01-01T00:00:00Z'
stdout 'draftexpired.md,2018-01-01T00:00:00Z'

hugo list all
stdout 'future.md,2030-01-01T00:00:00Z'
stdout 'draft.md,2019-01-01T00:00:00Z'
stdout 'expired.md,2018-01-01T00:00:00Z'
stdout 'draftexpired.md,2018-01-01T00:00:00Z'
stdout 'draftfuture.md,2030-01-01T00:00:00Z'

-- hugo.toml --
baseURL = "https://example.org/"
Expand All @@ -31,4 +37,15 @@ expiryDate: 2019-01-01
-- content/future.md --
---
date: 2030-01-01
---
-- content/draftfuture.md --
---
date: 2030-01-01
draft: true
---
-- content/draftexpired.md --
---
date: 2018-01-01
expiryDate: 2019-01-01
draft: true
---

0 comments on commit e6dc805

Please sign in to comment.