From 51b9e2eaedcb5df47c57dfa02616afe9cd66e853 Mon Sep 17 00:00:00 2001 From: Jordan Bancino Date: Sun, 21 May 2023 13:34:05 +0000 Subject: [PATCH] Clean Cytoplasm when td clean is run. --- TODO.txt | 5 +++++ tools/bin/td | 3 +++ 2 files changed, 8 insertions(+) diff --git a/TODO.txt b/TODO.txt index 6c8a738..936e619 100644 --- a/TODO.txt +++ b/TODO.txt @@ -19,12 +19,17 @@ Milestone: v0.3.0 [x] Profiles [ ] Directory +[ ] Fix leaks in http, json +[ ] Remove TelodendriaGenerateMemReport() + [ ] Cytoplasm [ ] Debug OpenSSL [x] Documentation [x] hdoc(1) and hdoc(5) [x] Fix memory leaks in hdoc [x] Detect memory write out of bounds + [ ] Memory check before reallocate, free + [ ] Add a sane default memory hook Milestone: v0.4.0 ----------------- diff --git a/tools/bin/td b/tools/bin/td index 03f3685..7f457e1 100644 --- a/tools/bin/td +++ b/tools/bin/td @@ -207,6 +207,9 @@ recipe_run() { # Remove all build files, which can be regenerated by re-running the # build recipe. recipe_clean() { + cd Cytoplasm + sh make.sh clean + cd .. rm -r build }