aboutsummaryrefslogtreecommitdiff
path: root/.local/bin/latex-compile
blob: 25f92b64a410591bc2cd8b3453bfa1e0391578a3 (plain)
1
2
3
4
5
6
7
8
#!/bin/sh -eu

if ! {
  pdflatex -shell-escape -halt-on-error "$1" ||
  xelatex -shell-escape -halt-on-error "$1"
}; then
  cat
fi