1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

dist/tools/esptools/export.sh: fix IDF_TOOL_PATH default setting

This commit is contained in:
Gunar Schorcht 2023-01-10 22:12:56 +01:00
parent 385569c7bf
commit 14bfabd6e9

View File

@ -5,6 +5,10 @@ ESP32_GCC_VERSION_DIR="8.4.0"
ESP32_OPENOCD_VERSION="v0.11.0-esp32-20211220"
if [ -z ${IDF_TOOLS_PATH} ]; then
IDF_TOOLS_PATH=${HOME}/.espressif
fi
TOOLS_PATH=${IDF_TOOLS_PATH}/tools
export_arch()