Skip to content

Commit 00b8d1c

Browse files
authored
[Telink] Fix stale DTS on rebuild (project-chip#43235)
1 parent 0f36bd2 commit 00b8d1c

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

scripts/build/builders/telink.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -213,8 +213,7 @@ def get_cmd_prefixes(self):
213213
return cmd
214214

215215
def generate(self):
216-
if os.path.exists(self.output_dir):
217-
return
216+
os.makedirs(self.output_dir, exist_ok=True)
218217

219218
flags = []
220219
if self.enable_ota:

0 commit comments

Comments
 (0)