Skip to content

Commit a2234bc

Browse files
committed
Set continue not break
1 parent 5bc29f5 commit a2234bc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

build_platform.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -353,13 +353,13 @@ def extract_dependencies(output):
353353
if re.match(r'Used library', line):
354354
IS_LIBS_FOUND = True
355355
COLS = [0,str.find(line, 'Version'), str.find(line, 'Path')]
356-
break
356+
continue
357357
else:
358358
if not IS_BSP_FOUND:
359359
if re.match(r'Used platform', line):
360360
IS_BSP_FOUND = True
361361
COLS = [0,str.find(line, 'Version'), str.find(line, 'Path')]
362-
break
362+
continue
363363
else:
364364
libraries.append([line[:COLS[1]].strip(),line[COLS[1]:COLS[2]].strip()])
365365
else:

0 commit comments

Comments
 (0)