update githook pre-commit (forgot one instance of egrep)
This commit is contained in:
parent
95689f0608
commit
2b4be47511
1 changed files with 1 additions and 1 deletions
|
@ -4,7 +4,7 @@
|
|||
# https://mademistakes.com/notes/adding-last-modified-timestamps-with-git/
|
||||
# enhanced the script to either update the YAML or TOML frontmatter (as i used both O_o)
|
||||
|
||||
git diff --cached --name-status | egrep -i "^(A|M).*\.(md)$" | while read a b; do
|
||||
git diff --cached --name-status | grep -E -i "^(A|M).*\.(md)$" | while read a b; do
|
||||
# YAML or TOML frontmatter?
|
||||
(grep -E "^---$" $b > /dev/null) && (cat $b | sed "/---.*/,/---.*/s/^lastmod:.*$/lastmod: $(date -u "+%Y-%m-%dT%H:%M:%S%z")/" > tmp)
|
||||
(grep -E "^\+\+\+$" $b > /dev/null) && (cat $b | sed "/+++.*/,/+++.*/s/^lastmod.*$/lastmod = '$(date -u "+%Y-%m-%dT%H:%M:%S%z")'/" > tmp)
|
||||
|
|
Loading…
Reference in a new issue