Skip to content

Commit

Permalink
add .gitkeep to _pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Pxtl committed Nov 17, 2023
1 parent e416712 commit ea4cd99
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 0 deletions.
Binary file added SnowSite/Snow/_pages/.gitkeep
Binary file not shown.
1 change: 1 addition & 0 deletions src/Snow/Program.cs
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,7 @@ private static void Main(string[] args)
if (!string.IsNullOrWhiteSpace(settings.Pages))
{
pages = new DirectoryInfo(settings.Pages).EnumerateFiles("*", SearchOption.AllDirectories)
.Where(x => extensions.Contains(x.Extension))
.Select(x => PagesParser.GetFileData(x, settings))
.OrderByDescending(x => x.Date)
.Where(x => x.Published != Published.Private && !(x is Post.MissingPost))
Expand Down

0 comments on commit ea4cd99

Please sign in to comment.