Makefile: Fix blog.html target

This commit is contained in:
Andrew Rogers 2023-10-20 05:36:11 -05:00
commit cb0aec6cad
2 changed files with 1 additions and 1 deletions

8
scripts/indicators.bash Executable file
View file

@ -0,0 +1,8 @@
#!/usr/bin/env bash
pushd blog
for post in *.md; do
ind_name=$(sed 's/\.md$/.indicator.html/' <<<"$post")
[ ! -a "$ind_name" ] && ln -s ../blog.indicator.html "$ind_name"
done
popd # blog