From 908a3d128fd04d9b7c198560ee8bc64401012244 Mon Sep 17 00:00:00 2001 From: hathach Date: Mon, 1 Mar 2021 21:34:45 +0700 Subject: [PATCH] fix ci build for rp2040 --- tools/build_family.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/build_family.py b/tools/build_family.py index 23a08c663..65d0e8fc2 100644 --- a/tools/build_family.py +++ b/tools/build_family.py @@ -98,12 +98,12 @@ def build_size(example, board): def skip_example(example, board): ex_dir = 'examples/' + example + # family CMake + board_mk = 'hw/bsp/{}/family.cmake'.format(family) + # family.mk - board_mk = 'hw/bsp/{}/family.mk'.format(family) - - # family.cmake if not os.path.exists(board_mk): - board_mk = 'hw/bsp/{}/family.cmake'.format(family) + board_mk = 'hw/bsp/{}/family.mk'.format(family) with open(board_mk) as mk: mk_contents = mk.read()