fix: match directories for clean up
This commit is contained in:
parent
01807e961e
commit
f98f175974
1 changed files with 1 additions and 1 deletions
2
justfile
2
justfile
|
@ -122,7 +122,7 @@ archive:
|
||||||
fi
|
fi
|
||||||
|
|
||||||
clean:
|
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:
|
_clean target:
|
||||||
if [ -f {{ target }} -o -d {{ target }} ] ; then rm -r {{ target }} ; fi
|
if [ -f {{ target }} -o -d {{ target }} ] ; then rm -r {{ target }} ; fi
|
||||||
|
|
Loading…
Reference in a new issue