We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4571a88 commit cb32494Copy full SHA for cb32494
tools/ci/bsp_buildings.py
@@ -80,7 +80,7 @@ def build_bsp(bsp, scons_args='',name='default'):
80
for file_type in ['*.elf', '*.bin', '*.hex']:
81
files = glob.glob(f'{rtt_root}/bsp/{bsp}/{file_type}')
82
for file in files:
83
- shutil.copy(file, f'{rtt_root}/output/bsp/{bsp}/{name.Replace("/", "_")}.{file_type[2:]}')
+ shutil.copy(file, f'{rtt_root}/output/bsp/{bsp}/{name.replace("/", "_")}.{file_type[2:]}')
84
85
os.chdir(f'{rtt_root}/bsp/{bsp}')
86
run_cmd('scons -c', output_info=False)
0 commit comments