From b46ae3a7a5c8d9bd12e369810a86136c47eced9a Mon Sep 17 00:00:00 2001 From: "Ben V. Brown" Date: Thu, 26 Dec 2019 11:23:36 +1100 Subject: [PATCH] Fix cleaning temp files properly to allow re-use of STM libs --- workspace/TS100/build.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/workspace/TS100/build.sh b/workspace/TS100/build.sh index 75a4a2d1..7bfff64d 100755 --- a/workspace/TS100/build.sh +++ b/workspace/TS100/build.sh @@ -145,7 +145,11 @@ then echo "Building firmware for $model in $lang" make -j lang="$lang" model="$model" >/dev/null checkLastCommand - rm -rf Objects >/dev/null + echo "Cleanup Temp files 1 for $model in $lang" + rm -rf Objects/Core >/dev/null + checkLastCommand + echo "Cleanup Temp files 2 for $model in $lang" + rm -rf Objects/Src >/dev/null checkLastCommand done done