Is there an easy way to clean up (or even just fin...
# general
f
Is there an easy way to clean up (or even just find) all of the files left behind by running with
--no-process-execution-local-cleanup
. I ended up filling up quite a bit of my disk yesterday running repeatedly to debug
b
Right now use
rm -rf /tmp/process-execution*
(on Unix). I'm working on a PR to add a
clean
goal to do this cleaning for you (it also renames the dirs to
pants-peXYZ
to be more clear)
❤️ 1
f
More generally, you could run a utility like
tmpwatch
in a cron.
(For general management of tmp space)
f
I'm on a mac, and it seems the files are strewn around
/private
mixed in with other things
b