From c3f578d17c62529f835704ff7fad04166ff86463 Mon Sep 17 00:00:00 2001 From: Marius Vikhammer Date: Mon, 5 Dec 2022 10:44:10 +0800 Subject: [PATCH] hints: add a more complete description for component not found errors --- tools/idf_py_actions/hints.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/idf_py_actions/hints.yml b/tools/idf_py_actions/hints.yml index 87420d20be..f77ad7092a 100644 --- a/tools/idf_py_actions/hints.yml +++ b/tools/idf_py_actions/hints.yml @@ -228,7 +228,7 @@ - re: "Failed to resolve component '(?!esp_ipc)(\\w+)'" - hint: "The component {} has been moved to the IDF component manager or has been removed and refactored into some other component.\nPlease look out for component in 'https://components.espressif.com' and add using 'idf.py add-dependency' command.\nRefer to the migration guide for more details." + hint: "The component {} could not be found. This could be because: component name was misspelled, the component was not added to the build, the component has been moved to the IDF component manager or has been removed and refactored into some other component.\nPlease look out for component in 'https://components.espressif.com' and add using 'idf.py add-dependency' command.\nRefer to the migration guide for more details about moved components.\nRefer to the build-system guide for more details about how components are found and included in the build." match_to_output: True -