update githook pre-commit (forgot one instance of egrep)

main
Dominic Reich 9 months ago
parent 95689f0608
commit 2b4be47511
Signed by: dominic
GPG Key ID: BC9D6AE1A3BE169A

@ -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…
Cancel
Save