From 5c1b063399590f35e8c1295a065953c7947376c6 Mon Sep 17 00:00:00 2001 From: Timerix Date: Sun, 21 Jul 2024 02:49:42 +0300 Subject: [PATCH] objects deletion after link and pack_static_lib --- functions.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/functions.sh b/functions.sh index 0f244c5..cebc5df 100755 --- a/functions.sh +++ b/functions.sh @@ -183,6 +183,7 @@ function pack_static_lib { else error "some error happened" fi + clean_dir "$OBJDIR/objects" } function link { @@ -216,4 +217,5 @@ function link { else error "some error happened" fi + clean_dir "$OBJDIR/objects" }