From ab3da7b971d1c02185e4cdf7d93af4ccb13e59ee Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Thu, 2 Jul 2026 23:34:26 +0200 Subject: [PATCH] Clean .aux dir in justfile --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index fb1a26a..58298e7 100644 --- a/Justfile +++ b/Justfile @@ -9,4 +9,4 @@ build: kitty -e sh -c "cd '$DIR' && BIBINPUTS='$ROOT:' {{ LATEXMK }} '$BASE.tex'" > /dev/null 2>&1 & clean: - find . -type d \( -name build -o -name svg-inkscape \) -exec rm -rf {} + + find . -type d \( -name build -o -name svg-inkscape -o -name .aux \) -exec rm -rf {} +