Skip to content

Commit

Permalink
add_path.sh: cmake: add tools folder to the path
Browse files Browse the repository at this point in the history
  • Loading branch information
nicola-lunghi authored and antmak committed Sep 27, 2018
1 parent 71b5ce5 commit 1b3385e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion add_path.sh
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,10 @@
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/espcoredump:${IDF_PATH}/components/partition_table/"
IDF_ADD_PATHS_EXTRAS="${IDF_ADD_PATHS_EXTRAS}:${IDF_PATH}/components/esptool_py/esptool"
IDF_ADD_PATHS_EXTRAS="${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}/tools/"
export PATH="${PATH}:${IDF_ADD_PATHS_EXTRAS}"
echo "Added to PATH: ${IDF_ADD_PATHS_EXTRAS}"
fi
Expand Down

0 comments on commit 1b3385e

Please sign in to comment.