From 839ae964fb4fdbc53e734e3a968e681883531739 Mon Sep 17 00:00:00 2001 From: Qyriad Date: Tue, 12 May 2026 17:40:02 +0200 Subject: [PATCH] justfile: clean build and outputs contents, not directories This makes it easier to build lix on a different file system from the source repo, e.g. symlinking ./build to a directory in /tmp. The ./outputs directory is included for completeness as another significant source of generated artifacts. Change-Id: I1bb4c21c700beacb4882a1be473dd31353edd177 --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index d67a5588a..bda9ca16d 100644 --- a/justfile +++ b/justfile @@ -10,9 +10,9 @@ builddir := "build" list: just --list -# Clean build artifacts +# Clean build artifacts and outputs. clean: - rm -rf {{ builddir }} + rm -rf {{ quote(builddir) }}/* {{ quote(builddir) }}/.* {{ quote(outdir) }}/* {{ quote(outdir) }}/.* # Prepare meson for building. setup *OPTIONS: