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