自动添加更新时间

修改pre-commit文件

这个是支持Linux系统的 哭了

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59

#!/usr/bin/env sh

. "$(dirname -- "$0")/_/husky.sh"

# Modified files, update the modDatetime

git diff --cached --name-status |

grep -i '^M.*\.md$' |

while read _ file; do

filecontent=$(cat "$file")

frontmatter=$(echo "$filecontent" | awk -v RS='---' 'NR==2{print}')

draft=$(echo "$frontmatter" | awk '/^draft: /{print $2}')

if [ "$draft" = "false" ]; then

echo "$file modDateTime updated"

cat $file | sed "/---.*/,/---.*/s/^modDatetime:.*$/modDatetime: $(date -u "+%Y-%m-%dT%H:%M:%SZ")/" > tmp

mv tmp $file

git add $file

fi

if [ "$draft" = "first" ]; then

echo "First release of $file, draft set to false and modDateTime removed"

cat $file | sed "/---.*/,/---.*/s/^modDatetime:.*$/modDatetime:/" | sed "/---.*/,/---.*/s/^draft:.*$/draft: false/" > tmp

mv tmp $file

git add $file

fi

done

# New files, add/update the pubDate

git diff --cached --name-status | egrep -i "^(A).*\.(md)$" | while read a b; do

cat $b | sed "/---.*/,/---.*/s/^pubDate:.*$/pubDate: $(date -u "+%Y-%m-%dT%H:%M:%SZ")/" > tmp

mv tmp $b

git add $b

done

npx lint-staged