mirror of
https://github.com/espressif/esp-idf.git
synced 2025-08-01 03:34:32 +02:00
Merge branch 'bugfix/windows_install_prerequisites_idf_path' into 'master'
windows_install_prerequisites: Fix bug if IDF_PATH is not set See merge request idf/esp-idf!3874
This commit is contained in:
@@ -37,8 +37,8 @@ pacman --noconfirm -S --needed gettext-devel gcc git make ncurses-devel flex bis
|
||||
mingw-w64-i686-python2-pip mingw-w64-i686-python2-cryptography unzip winpty
|
||||
|
||||
# if IDF_PATH is set, install requirements now as well
|
||||
if [ -n $IDF_PATH ]; then
|
||||
python -m pip install -r $IDF_PATH/requirements.txt
|
||||
if [ -n "$IDF_PATH" ]; then
|
||||
python -m pip install -r "$IDF_PATH/requirements.txt"
|
||||
fi
|
||||
|
||||
# Automatically download precompiled toolchain, unpack at /opt/xtensa-esp32-elf/
|
||||
|
Reference in New Issue
Block a user