9 lines
119 B
Bash
9 lines
119 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
cd "/work/$LATEXMK_CD_DIR"
|
||
|
|
||
|
if [ "$SKIP_ENTRY" = false ] ; then
|
||
|
latexmk -outdir=/build "$@"
|
||
|
else
|
||
|
bash
|
||
|
fi
|