cu-chess-lectures-2024/make.sh
JAMES RYAN 1d31bfc366 moved make script out of 'flowcharts/'
It uses 'cowsay' and 'firefox', as well as the explicit dep 'mdslides'.
SO, YMMV
2024-08-08 23:14:12 -04:00

9 lines
210 B
Bash
Executable File

#!/bin/bash
if ! [ $# -eq 1 ]; then
echo -e "usage: $0 <presentation.md>\n\nmake sure media is in ./media!" | cowsay -n
exit 1
fi
mdslides $1 --include media --output_dir out_$1
firefox ./out_$1/index.html