Skip to content

Commit cb32494

Browse files
authored
fix
1 parent 4571a88 commit cb32494

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/ci/bsp_buildings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def build_bsp(bsp, scons_args='',name='default'):
8080
for file_type in ['*.elf', '*.bin', '*.hex']:
8181
files = glob.glob(f'{rtt_root}/bsp/{bsp}/{file_type}')
8282
for file in files:
83-
shutil.copy(file, f'{rtt_root}/output/bsp/{bsp}/{name.Replace("/", "_")}.{file_type[2:]}')
83+
shutil.copy(file, f'{rtt_root}/output/bsp/{bsp}/{name.replace("/", "_")}.{file_type[2:]}')
8484

8585
os.chdir(f'{rtt_root}/bsp/{bsp}')
8686
run_cmd('scons -c', output_info=False)

0 commit comments

Comments
 (0)