From b1bf0fe5ba19568d23c7bf8126128ff10b12344a Mon Sep 17 00:00:00 2001 From: Christoph Urlacher Date: Fri, 3 Jul 2026 00:29:28 +0200 Subject: [PATCH] Clean .out dir in justfile --- Justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Justfile b/Justfile index 58298e7..0845127 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 -o -name .aux \) -exec rm -rf {} + + find . -type d \( -name build -o -name svg-inkscape -o -name .aux -o -name .out \) -exec rm -rf {} +