mirror of
https://github.com/peter-tanner/peter-tanner.github.io.git
synced 2024-11-30 12:00:18 +08:00
15 lines
323 B
Ruby
15 lines
323 B
Ruby
|
#!/usr/bin/env ruby
|
||
|
#
|
||
|
# Check for changed posts
|
||
|
|
||
|
Jekyll::Hooks.register :posts, :post_init do |post|
|
||
|
|
||
|
commit_num = `git rev-list --count HEAD "#{ post.path }"`
|
||
|
|
||
|
if commit_num.to_i > 1
|
||
|
lastmod_date = `git log -1 --pretty="%ad" --date=iso "#{ post.path }"`
|
||
|
post.data['last_modified_at'] = lastmod_date
|
||
|
end
|
||
|
|
||
|
end
|