Skip to content

Commit

Permalink
[Telink] Fix CI build
Browse files Browse the repository at this point in the history
  • Loading branch information
s07641069 committed Sep 29, 2024
1 parent 1208c7d commit 1936cfc
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion scripts/tools/telink/process_binaries.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ def merge_binaries(input_file1, input_file2, output_file, offset):
build_conf = BuildConfiguration(os.path.join(os.getcwd(), os.pardir))

# Clean up merged.bin from previuse build
os.remove('merged.bin')
if os.path.exists('merged.bin'):
os.remove('merged.bin')

# Telink W91 dual-core SoC binary operations
if build_conf.getboolean('CONFIG_SOC_SERIES_RISCV_TELINK_W91'):
Expand Down

0 comments on commit 1936cfc

Please sign in to comment.