local special

This commit is contained in:
Alexander 2026-06-25 15:27:30 -04:00
parent 1bbba83488
commit 520e977a39
2 changed files with 5 additions and 1 deletions

1
.gitignore vendored
View file

@ -10,3 +10,4 @@ woff2/
fonts/*trial
**/*.log
**/*.cache
**/local_special.sh

View file

@ -31,7 +31,7 @@ if ! [[ -f lexers.out ]] || [[ "$(head -1 lexers.out)" != "$(pygmentize -V)" ]];
echo "Created pygments lexer cache at lexers.out"
fi
find acl.cool/site/ ytheleus.org/site/ -type f \( -name '*.dj' -o -name '*.html' \) -exec cat {} + >all_chars.txt
find */site/ -type f \( -name '*.dj' -o -name '*.html' \) -exec cat {} + >all_chars.txt
cat common_chars.txt >>all_chars.txt
for font in fonts/LiterataTT/LiterataTT-Subhead{Regular,Italic,Semibold,SemiboldItalic,Bold,BoldItalic}.woff2 \
@ -102,6 +102,9 @@ for site in acl.cool ytheleus.org dembim.foo; do
for d in $CUR_DIR; do
rm -r $d
done
if [ -e ./local_special.sh ]; then
./local_special.sh
fi
popd
done