From 3aa2b571ae8fd07a289cc174e877f077456f794c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lourens=20Naud=C3=A9?= Date: Sun, 12 Feb 2017 22:48:41 +0000 Subject: [PATCH] Add espcoredump to the add_path shell helper --- add_path.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/add_path.sh b/add_path.sh index 6b69f8d44f..1c0b0ed0ed 100644 --- a/add_path.sh +++ b/add_path.sh @@ -9,7 +9,7 @@ if [ -z ${IDF_PATH} ]; then echo "IDF_PATH must be set before including this script." else - IDF_ADD_PATHS_EXTRAS="${IDF_PATH}/components/esptool_py/esptool:${IDF_PATH}/components/partition_table/" + IDF_ADD_PATHS_EXTRAS="${IDF_PATH}/components/esptool_py/esptool:${IDF_PATH}/components/espcoredump:${IDF_PATH}/components/partition_table/" export PATH="${PATH}:${IDF_ADD_PATHS_EXTRAS}" echo "Added to PATH: ${IDF_ADD_PATHS_EXTRAS}" fi