From cf594da20b581d9d09de3ef340e6402c265833c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jesu=CC=81s=20Pe=CC=81rez?= Date: Sat, 20 Sep 2025 19:25:54 +0100 Subject: [PATCH] chore: fix remove target artifacts --- justfiles/tools.just | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/justfiles/tools.just b/justfiles/tools.just index ad3ec18..4d54aaf 100644 --- a/justfiles/tools.just +++ b/justfiles/tools.just @@ -222,10 +222,10 @@ clean: done fi - # Also clean nushell submodule if it exists - if [ -d "nushell/target" ]; then - echo "Removing nushell/target..." - rm -rf "nushell/target" + # Also clean nushell submodule if it exists (use cargo clean for complex projects) + if [ -d "nushell" ]; then + echo "Cleaning nushell submodule..." + cd nushell && cargo clean && cd .. fi # Clean specific plugin