Skip to content

Commit 19e85d5

Browse files
committed
wqqw
1 parent 4e5526b commit 19e85d5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

extra/build_all.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,10 @@ if [ ! -z "$GITHUB_STEP_SUMMARY" ] ; then
2626
fi
2727

2828
jq -cr '.[]' < ./extra/targets.json | while read -r item; do
29-
board=$(jq -cr '.board' <<< "$item")
30-
args=$(jq -cr '.args' <<< "$item")
29+
board=$(jq -cr '.board // ""' <<< "$item")
30+
args=$(jq -cr '.args // ""' <<< "$item")
3131

32+
echo "Building for board: '$board', args: '$args'"
3233
variant=$(extra/get_variant_name.sh "$board" || echo "$board")
3334
if [ -z "$GITHUB_STEP_SUMMARY" ] ; then
3435
echo && echo && echo

extra/targets.json

+1-2
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,5 @@
66
{ "board": "[email protected]//m7" },
77
{ "board": "ek_ra8d1" },
88
{ "board": "frdm_mcxn947/mcxn947/cpu0" },
9-
{ "board": "frdm_rw612" },
10-
{}
9+
{ "board": "frdm_rw612" }
1110
]

0 commit comments

Comments
 (0)