From f98f1759747b68dee350badf3478a6dab7d5a742 Mon Sep 17 00:00:00 2001 From: Paul Campbell Date: Mon, 2 Dec 2024 19:43:22 +0000 Subject: [PATCH] fix: match directories for clean up --- justfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/justfile b/justfile index 49d3e87..b2f3ab5 100644 --- a/justfile +++ b/justfile @@ -122,7 +122,7 @@ archive: fi clean: - for target in TEMP/* AAX/* AAXC/* M4B/* ; do just _clean $target ; done + for target in TEMP AAX AAXC M4B ; do just _clean $target ; done _clean target: if [ -f {{ target }} -o -d {{ target }} ] ; then rm -r {{ target }} ; fi