Remove compile script
This commit is contained in:
parent
3534fccdcc
commit
901e767512
23
compile.sh
23
compile.sh
|
@ -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
|
|
Reference in a new issue