blob: e3b9ad988fbb25aa7336b8b2d4d6d3b3b83f8591 (
plain) (
blame)
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
|
#!/bin/sh
# Updates the Mount Avenue tracker - to do this, an entry must be made in
# trk/mount-avenue, and then this is copied over to the website where a new
# entry is made, by replacing the contents of <!-- ma:begin --> and
# <!-- ma:end -->.
# Constants #
WEBPAGE_PATH="$BLOG_PATH/training/mount-ave.html"
DELIMITER_BEGIN="<!-- ma:begin -->"
DELIMITER_END="<!-- ma:end -->"
TABLE_FILE='/tmp/ma-tbl-formatted'
trk_path="$(orgdresolv "ORGD_TRK_PATH")"/mount-avenue
# Modify the document and check for changes.
hash_before="$(sha256sum "$trk_path")"
trk mount-avenue
hash_after="$(sha256sum "$trk_path")"
if [ "$hash_before" = "$hash_after" ] ; then
echo "No changes made - exitting early."
exit 0
fi
table_formatted="$(ma-fmt-tbl "$trk_path")"
echo "$table_formatted" > "$TABLE_FILE"
sed -i -ne "/$DELIMITER_BEGIN/ {p; r $TABLE_FILE" -e ":a; n; /$DELIMITER_END/ {p; b}; ba}; p" "$WEBPAGE_PATH"
# Commit and push the changes
cd "$(dirname "$WEBPAGE_PATH")"
git add "$(basename "$WEBPAGE_PATH")"
git commit -m "Mount Avenue: updated $(date +"%Y-%m-%d %H:%M")"
git-push-all
|