Skip to content

Commit 5bc29f5

Browse files
committed
Relax deps regex
1 parent 8106f2c commit 5bc29f5

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
@@ -350,13 +350,13 @@ def extract_dependencies(output):
350350
COLS = []
351351
for line in output.split('\n'):
352352
if not IS_LIBS_FOUND:
353-
if re.match(r'^Used library', line):
353+
if re.match(r'Used library', line):
354354
IS_LIBS_FOUND = True
355355
COLS = [0,str.find(line, 'Version'), str.find(line, 'Path')]
356356
break
357357
else:
358358
if not IS_BSP_FOUND:
359-
if re.match(r'^Used platform', line):
359+
if re.match(r'Used platform', line):
360360
IS_BSP_FOUND = True
361361
COLS = [0,str.find(line, 'Version'), str.find(line, 'Path')]
362362
break

0 commit comments

Comments
 (0)