www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit db57238fd9cb3d98a3f9c506ef2004d51f9a2243
parent cfeaeb3faa501554851a63aa6fad694c2e945d35
Author: Suzanne Soy <jsmaniac.github@suzanne.soy>
Date:   Tue,  6 Jul 2021 17:34:12 +0100

Forgot to escape $ in Makefile

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -3,6 +3,6 @@ all: doc/pdf/phc-thesis.pdf doc/pdf/phc-thesis.pdf: from-dissertation-tobin-hochstadt/*.scrbl scribblings/*.scrbl scribblings/*.rkt sed -i -e 's|PLACEHOLDER|$$(which pdflatex)|' pdflatex-wrapper/pdflatex - PATH="$PWD/pdflatex-wrapper:$PATH" raco setup --doc-pdf doc/pdf/ --pkgs phc-thesis > pdf.log 2>&1 || (cat pdf.log && echo "=== plain ===" && cat /tmp/ltx/*.tex && echo "=== base64 ===" && base64 /tmp/ltx/*.tex && echo "=== end ===" && exit 1) + PATH="$$PWD/pdflatex-wrapper:$$PATH" raco setup --doc-pdf doc/pdf/ --pkgs phc-thesis > pdf.log 2>&1 || (cat pdf.log && echo "=== plain ===" && cat /tmp/ltx/*.tex && echo "=== base64 ===" && base64 /tmp/ltx/*.tex && echo "=== end ===" && exit 1) gs -dNOPAUSE -dBATCH -sDEVICE=pdfwrite -dFastWebView=true -sOutputFile=doc/pdf/phc-thesis-linearized.pdf doc/pdf/phc-thesis.pdf mv doc/pdf/phc-thesis-linearized.pdf doc/pdf/phc-thesis.pdf