Remove compile script

master
Simon Bruder 2020-10-11 17:24:57 +02:00
parent 3534fccdcc
commit 901e767512
No known key found for this signature in database
GPG Key ID: 6F03E0000CC5B62F
1 changed files with 0 additions and 23 deletions

View File

@ -1,23 +0,0 @@
#!/bin/sh
set -e
case "$1" in
"libreoffice")
for presi in revealjs/*/handout.odt; do
make "$(dirname $presi)/handout.pdf"
done
;;
"revealjs")
for presi in revealjs/*/index.md; do
make "$(dirname $presi)/index.html"
done
;;
"decktape")
for presi in revealjs/*/index.html; do
make "$(dirname $presi)/index.pdf"
done
;;
*)
echo "unknown mode"
;;
esac