Would be possible to add a command to clean all th...
# sst
a
Would be possible to add a command to clean all the “.build” folders? Like..
sst clean
?
t
ah because they're nested - yeah this is a good point
We really don't want to have multiple
.build
folders but haven't been able to prioritize that yet
quick workaround command if you want
find . -name ".build" -exec rm -rf "{}" \;
a
Cool, yeah, I have some
.build
in my
/backend/src
folder.