Skip to content

Commit

Permalink
Merge pull request #26 from bearn01d/fix/shellescape
Browse files Browse the repository at this point in the history
add some missing -shell-escape parameters
  • Loading branch information
xqms authored Mar 18, 2024
2 parents 2fb023f + c0e71cd commit 465bce6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions release.sh
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ echo "3) Running pdflatex with render=false to determine needed files..."
mv submission.tex submission.tex.orig
echo '\makeatletter\def\graphicscache@inhibit{true}\makeatother' > submission.tex
cat submission.tex.orig >> submission.tex
pdflatex -interaction nonstopmode -recorder submission.tex &>> release.log
pdflatex -shell-escape -interaction nonstopmode -recorder submission.tex &>> release.log

grep "^INPUT" submission.fls \
| cut -d ' ' --complement -f 1 \
Expand Down Expand Up @@ -88,9 +88,9 @@ fi
mkdir test_release
cd test_release
tar xf ../release.tar
pdflatex -interaction nonstopmode submission.tex &>> release.log
pdflatex -interaction nonstopmode submission.tex &>> release.log
pdflatex -interaction nonstopmode submission.tex &>> release.log
pdflatex -shell-escape -interaction nonstopmode submission.tex &>> release.log
pdflatex -shell-escape -interaction nonstopmode submission.tex &>> release.log
pdflatex -shell-escape -interaction nonstopmode submission.tex &>> release.log
)

echo
Expand Down

0 comments on commit 465bce6

Please sign in to comment.