Skip to content

Commit d440a8d

Browse files
asm5878fabiobaltieri
authored andcommitted
scripts: ble_library.py
Updating file list according CuebWBA 1.5.0. Raise all the errors during copy_ble_lib_files, but not aborting. This will allow to list all missing files for a followwing manual check. Signed-off-by: Alessandro Manganaro <[email protected]>
1 parent 1844935 commit d440a8d

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

scripts/ble_library.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,7 @@
9999
ble_transparent_mode_app_path + "/System/Interfaces/hw_aes.c",
100100
ble_transparent_mode_app_path + "/System/Interfaces/hw_if.h",
101101
ble_transparent_mode_app_path + "/System/Interfaces/hw_pka.c",
102-
ble_transparent_mode_app_path + "/System/Interfaces/pka_p256.c",
102+
ble_transparent_mode_app_path + "/System/Interfaces/hw_pka_p256.c",
103103
ble_transparent_mode_app_path + "/System/Config/Log/log_module.c",
104104
ble_transparent_mode_app_path + "/System/Config/Log/log_module.h",
105105
ble_transparent_mode_app_path + "/System/Config/Debug_GPIO/app_debug.h",
@@ -188,9 +188,8 @@ def copy_ble_lib_files(src_repo_path, dest_lib_path, stm32_serie):
188188
# Copy the file to the destination path
189189
shutil.copy(src_file_path, destination_path)
190190
else:
191+
# Raise all the errors but not aborting to allow a manual check
191192
logging.error(f"File : {src_file_path} not found")
192-
logging.error("Abort")
193-
sys.exit()
194193

195194

196195
def update_ble_lib_readme(lib_path, make_version, make_commit):

0 commit comments

Comments
 (0)