mirror of
https://github.com/Luzifer/tex-api.git
synced 2024-11-08 16:20:04 +00:00
9 lines
174 B
Bash
Executable file
9 lines
174 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
unzip input.zip
|
|
|
|
mkdir -p output
|
|
|
|
xelatex -halt-on-error -output-directory=output *.tex
|
|
xelatex -halt-on-error -output-directory=output *.tex
|