Searched refs:global_idf_tools_path (Results 1 – 1 of 1) sorted by relevance
/hal_espressif-3.4.0/tools/ |
D | idf_tools.py | 189 global_idf_tools_path = None # type: Optional[str] variable 542 return os.path.join(global_idf_tools_path, 'tools', self.name) # type: ignore 679 local_path = os.path.join(global_idf_tools_path, 'dist', archive_name) # type: ignore 731 archive_path = os.path.join(global_idf_tools_path, 'dist', archive_name) # type: ignore 1018 idf_python_env_path = os.path.join(global_idf_tools_path, 'python_env', # type: ignore 1036 idf_env_file_path = os.path.join(global_idf_tools_path, IDF_ENV_FILE) # type: ignore 1061 if global_idf_tools_path: # mypy fix for Optional[str] in the next call 1063 mkdir_p(global_idf_tools_path) 1064 with open(os.path.join(global_idf_tools_path, IDF_ENV_FILE), 'w') as w: # type: ignore 1067 …warn('File {} can not be created. '.format(os.path.join(global_idf_tools_path, IDF_ENV_FILE))) # … [all …]
|