17 lines
404 B
Bash
Executable file
17 lines
404 B
Bash
Executable file
#!/usr/bin/env sh
|
|
|
|
# start with a clean slate
|
|
rm -rf ./public/cosmicflow-html/
|
|
# generate the html and gemini versions of the site using org-publish
|
|
emacs -Q --batch -l create-site.el
|
|
|
|
|
|
# run script to copy the generated latex images to the appropiate subdirectories
|
|
./copy_latex_images.sh
|
|
|
|
# Generate the exocortex
|
|
./build_exocortex.sh
|
|
|
|
# Copy relavent pics to blog subdirectories
|
|
./copy-pics.sh
|
|
|