mirror of
https://github.com/Luzifer/tex-api.git
synced 2024-11-08 08:10:09 +00:00
Knut Ahlers
4937284b0e
this breaks the previous approach of writing the zip file to the file system and letting the script unpack the files itself Signed-off-by: Knut Ahlers <knut@ahlers.me>
7 lines
157 B
Bash
Executable file
7 lines
157 B
Bash
Executable file
#!/bin/bash
|
|
set -euxo pipefail
|
|
|
|
mkdir -p output
|
|
|
|
xelatex -halt-on-error -output-directory=output *.tex
|
|
xelatex -halt-on-error -output-directory=output *.tex
|