Right now for cleaning up temporary generated files, abi2doc uses:
def remove_temp_files():
for p in Path("/tmp/").glob("*.cocci"):
p.unlink()
This clean-up should be more specfic, It should look for /tmp/batch_task_*.cocci and /tmp/out.batch_task_*.cocci instead.
Right now for cleaning up temporary generated files,
abi2docuses:This clean-up should be more specfic, It should look for
/tmp/batch_task_*.cocciand/tmp/out.batch_task_*.cocciinstead.