From a1515bf3b63370d24250938d9d8696e4831f0a8f Mon Sep 17 00:00:00 2001 From: mnerv Date: Mon, 30 Oct 2023 00:57:49 +0100 Subject: [PATCH] Tweak deploy.sh to sort the files in registry.txt --- deploy.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/deploy.sh b/deploy.sh index 85974bf..8fe354e 100755 --- a/deploy.sh +++ b/deploy.sh @@ -76,6 +76,8 @@ printf "" > $index_registry find ./analysb | grep .tex >> $index_registry echo ./calcmem.tex >> $index_registry +printf "$(cat $index_registry)\n" | sort > $index_registry + # Compile printf "Compiling pdfs to $pdflatex_directory\n" count=$(cat $index_registry | wc -l)