From a37dad8f771819b4164fc571b256e1b6ba995565 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Motiejus=20Jak=C5=A1tys?= Date: Wed, 19 May 2021 22:57:46 +0300 Subject: [PATCH] rename files --- Makefile | 2 +- extract-and-generate | 4 ++-- mj-msc.tex | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index b1883f3..1ca4143 100644 --- a/Makefile +++ b/Makefile @@ -35,7 +35,7 @@ slides: $(SLIDES) mj-msc.pdf: mj-msc.tex test-figures.pdf version.tex bib.bib latexmk -shell-escape -g -pdf $< -mj-msc-all.pdf: mj-msc.pdf version.tex $(ARCHIVABLES) +mj-msc-full.pdf: mj-msc.pdf version.tex $(ARCHIVABLES) cp $< .tmp-$@ for f in $^; do \ if [ "$$f" = "$<" ]; then continue; fi; \ diff --git a/extract-and-generate b/extract-and-generate index a59509b..f6861dd 100755 --- a/extract-and-generate +++ b/extract-and-generate @@ -1,8 +1,8 @@ #!/bin/bash set -euo pipefail dir=$(mktemp -d) -src=${1:-mj-msc-all.pdf} -dst=${2:-mj-msc.pdf} +src=${1:-mj-msc.pdf} +dst=${2:-mj-msc-full.pdf} echo "Extracting $src to $dir/" && pdfdetach -saveall -o "$dir" "$src" echo "Generating $dir/$dst ..." make -j $(nproc) -C "$dir" "$dst" &> "$dir/make.log" || { diff --git a/mj-msc.tex b/mj-msc.tex index fa79001..ab4fc4a 100644 --- a/mj-msc.tex +++ b/mj-msc.tex @@ -213,7 +213,7 @@ line direction. The full test suite can be executed with a single command, and completes in a few seconds. Having an easily accessible test suite boosts confidence that no -unexpected regressions have been added while modifying the algorithm. +unexpected bugs have been created while modifying the algorithm. \section{Description of the implementation} @@ -255,7 +255,7 @@ We strongly believe in the ability to reproduce the results is critical for any scientific work. To make it possible for this paper, all source files and accompanying scripts have been attached to the PDF. To re-generate this document and its accompanying graphics, run this script (assuming name of - this document is {\tt mj-msc-all.pdf}): + this document is {\tt mj-msc-full.pdf}): \inputminted[fontsize=\small]{bash}{extract-and-generate}