From 6672862db8e6cd5046f65d7a78963013d0618db1 Mon Sep 17 00:00:00 2001 From: sU8U7SfkcwTJVH7PjaVmej7D <62424391+sU8U7SfkcwTJVH7PjaVmej7D@users.noreply.github.com> Date: Thu, 26 Aug 2021 12:00:00 +0200 Subject: [PATCH] Missing dependency for idf.py 'encrypted-flash' target --- components/app_update/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/components/app_update/CMakeLists.txt b/components/app_update/CMakeLists.txt index e6329224e6..8dd328215c 100644 --- a/components/app_update/CMakeLists.txt +++ b/components/app_update/CMakeLists.txt @@ -46,6 +46,7 @@ if(NOT BOOTLOADER_BUILD) add_custom_target(blank_ota_data ALL DEPENDS ${blank_otadata_file}) add_dependencies(flash blank_ota_data) + add_dependencies(encrypted-flash blank_ota_data) set(otatool_py ${python} ${COMPONENT_DIR}/otatool.py)