diff options
author | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2019-12-15 14:29:30 +0100 |
---|---|---|
committer | Marcin Chrzanowski <marcin.j.chrzanowski@gmail.com> | 2019-12-15 14:29:30 +0100 |
commit | 05868777b47a60cba919fa6bd5e90737979de6f7 (patch) | |
tree | ec4118042034ad45934e9c5a86c3030f287e54ad /scripts | |
parent | 9ced764fc28d8d655da178badf8ab94211676700 (diff) |
Clean up post compilation
* All posts are compiled before writing them
* Templated posts don't end up with .erb suffix
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/build.rb | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/build.rb b/scripts/build.rb index 1895781..9b48da4 100755 --- a/scripts/build.rb +++ b/scripts/build.rb @@ -45,7 +45,7 @@ if !Dir.exists? 'public/blog' end posts.each do |post| - P.add post['id'], post['filename'] + P.add post['id'], post['html_filename'] end write_statics statics @@ -55,6 +55,7 @@ write_blog_archive P.cd 'blog' +compile_posts posts write_blog_files P.cd '..' |