From 33d0984e277163361e79850c3a2c09efab42b47c Mon Sep 17 00:00:00 2001 From: rootile Date: Wed, 15 Jul 2026 20:16:22 +0200 Subject: [PATCH] justfile/clean: also run `cargo clean` Change-Id: I069a106ced8f164f1aaff48a9a9211668cbe012b --- justfile | 1 + 1 file changed, 1 insertion(+) diff --git a/justfile b/justfile index 70f81e92a..613149c03 100644 --- a/justfile +++ b/justfile @@ -21,6 +21,7 @@ list: # Clean build artifacts and outputs. clean: rm -rf {{ quote(builddir) }}/* {{ quote(builddir) }}/.* {{ quote(outdir) }}/* {{ quote(outdir) }}/.* + cargo clean # Prepare meson for building. [positional-arguments]