feat(tools): sha256-matcher, cheat script tweaks

This commit is contained in:
2023-07-12 22:44:08 +03:00
parent 22090129ec
commit 83eb7d861e
4 changed files with 97 additions and 4 deletions

View File

@@ -35,8 +35,10 @@ for f in ${PBB_CHAPTERS[@]}; do
HEADER=$(grep -e '^[#] ' "$f" | head -1 | awk '{print tolower($2)}')
CHEAT_FILE="$CHEAT_DEST/${HEADER}"
if [ ! -f "$CHEAT_FILE" ]; then
cp "$f" "$CHEAT_FILE" && msg_run "$CHEAT_FILE"
replacable "$f" "$CHEAT_FILE"
override=$?
if [ "$override" -ne 1 ]; then
cp "$f" "$CHEAT_FILE" && msg_run "Updated: $CHEAT_FILE"
fi
LC_ALL=C perl -pi.bak -e 's/\<\!-- CHAPTER END --\>//' "$CHEAT_FILE"