From 7ca8fa94b93cd18cb3bc7597db0d7def8fd4d452 Mon Sep 17 00:00:00 2001 From: Jason2866 <24528715+Jason2866@users.noreply.github.com> Date: Sat, 10 Sep 2022 15:04:00 +0200 Subject: [PATCH] Delete files in folder `berry/generate` --- pio-tools/gen-berry-structures.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pio-tools/gen-berry-structures.py b/pio-tools/gen-berry-structures.py index 599ee578c..ad207d31e 100644 --- a/pio-tools/gen-berry-structures.py +++ b/pio-tools/gen-berry-structures.py @@ -2,6 +2,7 @@ Import("env") env = DefaultEnvironment() platform = env.PioPlatform() import os +import glob import subprocess from os.path import join @@ -9,6 +10,13 @@ from os.path import join CURRENT_DIR = os.getcwd() BERRY_GEN_DIR = join(env.subst("$PROJECT_DIR"), "lib", "libesp32","berry") os.chdir(BERRY_GEN_DIR) +fileList = glob.glob(join(BERRY_GEN_DIR, "generate", "*")) +for filePath in fileList: + try: + os.remove(filePath) + # print("Deleting file : ", filePath) + except: + print("Error while deleting file : ", filePath) cmd = (env["PYTHONEXE"],join("tools","coc","coc"),"-o","generate","src","default",join("..","berry_tasmota","src"),join("..","berry_mapping","src"),join("..","berry_int64","src"),join("..","..","libesp32_lvgl","lv_binding_berry","src"),join("..","..","libesp32_lvgl","lv_binding_berry","generate"),"-c",join("default","berry_conf.h")) returncode = subprocess.call(cmd, shell=False) os.chdir(CURRENT_DIR)