mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
idf_tools.py: when guessing IDF_PATH, set it in the enviroment
This allows the processes launched from idf_tools.py to use the value of IDF_PATH. One such example is the installation of Python packages, when requirements.txt uses IDF_PATH to refer to the esp-windows-curses package. Closes https://github.com/espressif/esp-idf/issues/4341
This commit is contained in:
parent
93a8603c54
commit
9fa3974447
@ -1311,6 +1311,7 @@ def main(argv):
|
||||
global_idf_path = args.idf_path
|
||||
if not global_idf_path:
|
||||
global_idf_path = os.path.realpath(os.path.join(os.path.dirname(__file__), ".."))
|
||||
os.environ['IDF_PATH'] = global_idf_path
|
||||
|
||||
global global_idf_tools_path
|
||||
global_idf_tools_path = os.environ.get('IDF_TOOLS_PATH') or os.path.expanduser(IDF_TOOLS_PATH_DEFAULT)
|
||||
|
Loading…
Reference in New Issue
Block a user