commit fd1addb4c67c0f90ea082a83c2411d0374a3cd1f
parent 64e2a24df3a43ddd2601df76634322ae0b1614cb
Author: Chris Bracken <chris@bracken.jp>
Date: Thu, 12 Aug 2021 00:45:24 +0000
Link assets in rebuild_all.sh
When force-rebuilding the repos, generate symbolic links for style.css,
logo.png, and favicon.png.
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/rebuild_all.sh b/rebuild_all.sh
@@ -37,4 +37,7 @@ for repo_dir in ${repos}; do
rm -rf "${out_dir}/file"
cd "${out_dir}"
stagit -c "${repo_dir}/.htmlcache" "${repo_dir}"
+ ln -sf ../logo.png logo.png
+ ln -sf ../style.css style.css
+ ln -sf ../favicon.png favicon.png
done