From 8097cc9d72302ef9df78903c98f46537f8cd550b Mon Sep 17 00:00:00 2001 From: Justin Ong <9336475+JustinOng@users.noreply.github.com> Date: Fri, 28 Apr 2023 21:30:53 +0800 Subject: [PATCH] Fix references to IDF_ADD_PATHS_EXTRAS before being declared --- export.fish | 2 +- export.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/export.fish b/export.fish index 8b391be4b2..64ccdf7879 100644 --- a/export.fish +++ b/export.fish @@ -37,7 +37,7 @@ function __main set -gx IDF_TOOLS_INSTALL_CMD "$IDF_PATH"/install.fish # Allow calling some IDF python tools without specifying the full path # "$IDF_PATH"/tools is already added by 'idf_tools.py export' - set IDF_ADD_PATHS_EXTRAS "$IDF_ADD_PATHS_EXTRAS":"$IDF_PATH"/components/espcoredump + set IDF_ADD_PATHS_EXTRAS "$IDF_PATH"/components/espcoredump set IDF_ADD_PATHS_EXTRAS "$IDF_ADD_PATHS_EXTRAS":"$IDF_PATH"/components/partition_table set IDF_ADD_PATHS_EXTRAS "$IDF_ADD_PATHS_EXTRAS":"$IDF_PATH"/components/app_update diff --git a/export.sh b/export.sh index ebad0c5e98..4ef6ff84d9 100644 --- a/export.sh +++ b/export.sh @@ -125,7 +125,7 @@ __main() { export IDF_TOOLS_INSTALL_CMD=${IDF_PATH}/install.sh # Allow calling some IDF python tools without specifying the full path # ${IDF_PATH}/tools is already added by 'idf_tools.py export' - IDF_ADD_PATHS_EXTRAS="${IDF_ADD_PATHS_EXTRAS}:${IDF_PATH}/components/espcoredump" + IDF_ADD_PATHS_EXTRAS="${IDF_PATH}/components/espcoredump" IDF_ADD_PATHS_EXTRAS="${IDF_ADD_PATHS_EXTRAS}:${IDF_PATH}/components/partition_table" IDF_ADD_PATHS_EXTRAS="${IDF_ADD_PATHS_EXTRAS}:${IDF_PATH}/components/app_update"