From 54340050cf5abb9eed2d3c3e845a63614b663ce0 Mon Sep 17 00:00:00 2001 From: Cossid Date: Mon, 9 Jun 2025 09:39:36 -0500 Subject: [PATCH] Add mcu_software_version fallback when version is not in storage. --- profile-building/pull_schema.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/profile-building/pull_schema.py b/profile-building/pull_schema.py index a9294ae..73c41d7 100644 --- a/profile-building/pull_schema.py +++ b/profile-building/pull_schema.py @@ -286,8 +286,8 @@ def run_directory(directory, token=None): print('[!] software_version was not found') return if mcu_software_version is None: - print('[!] mcu_software_version was not found') - return + print('[!] mcu_software_version was not found, falling back to 1.0.0') + mcu_software_version = "1.0.0" if baseline_version is None: print('[!] baseline_version was not found') return