9 lines
147 B
Bash
9 lines
147 B
Bash
|
#!/bin/bash
|
||
|
set -e
|
||
|
|
||
|
git commit -am "Update"
|
||
|
git push
|
||
|
|
||
|
latexmk --pdf KommutativeAlgebra.tex
|
||
|
cp KommutativeAlgebra.pdf public/KommutativeAlgebra.pdf
|