]> git.lyx.org Git - features.git/commitdiff
Temporary script for testing math export.
authorRichard Kimberly Heck <rikiheck@lyx.org>
Thu, 12 Nov 2020 21:19:46 +0000 (16:19 -0500)
committerRichard Kimberly Heck <rikiheck@lyx.org>
Fri, 13 Nov 2020 00:13:55 +0000 (19:13 -0500)
runtest.sh [new file with mode: 0644]

diff --git a/runtest.sh b/runtest.sh
new file mode 100644 (file)
index 0000000..45ac23e
--- /dev/null
@@ -0,0 +1,10 @@
+#!/bin/bash
+
+/cvs/lyx/lyx-devel/build/bin/lyx2.4 -E pdflatex /cvs/lyx/lyx-devel/Math-Cleanup.tex lib/doc/Math.lyx
+if diff -q Math-Master.tex Math-Cleanup.tex; then
+    echo "No differences in LaTeX output!";
+else
+    echo "Differences in LaTeX output! Enter to see them....";
+    pause
+    diff -u Math-Master.tex Math-Cleanup.tex
+fi