From af3721de0a210dd4fc55f377538f49c1d44e27d2 Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 19 Sep 2006 12:13:37 +0000 Subject: [PATCH] * Slightly evil: compress the log file to prevent TeX output from retaining a dependency on teTeX. svn path=/nixpkgs/trunk/; revision=6559 --- pkgs/misc/tex/nix/run-latex.sh | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/misc/tex/nix/run-latex.sh b/pkgs/misc/tex/nix/run-latex.sh index 9e23aa21fa78..7127206606b2 100644 --- a/pkgs/misc/tex/nix/run-latex.sh +++ b/pkgs/misc/tex/nix/run-latex.sh @@ -30,6 +30,7 @@ showError() { echo echo "LATEX ERROR (LAST LOG LINES SHOWN):" tail -n 20 $tmpFile + bzip2 $tmpFile exit 1 } @@ -115,3 +116,5 @@ printf "%5d undefined citations\n" $(cat $tmpFile | grep -c "Citation.*undefined printf "%5d pages\n" \ $(cat $tmpFile | grep "Output written.*(.*pages" | sed "s/.*(\([0-9]*\) pages.*/\1/" || true) echo + +bzip2 $tmpFile