mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
tools: fix makefile converter windows path issue
This commit is contained in:
parent
5511541d20
commit
5d6e21795b
@ -118,6 +118,10 @@ def convert_project(project_path):
|
||||
|
||||
# Convert components as needed
|
||||
for p in component_paths:
|
||||
if "MSYSTEM" in os.environ:
|
||||
cmd = ["cygpath", "-w", p]
|
||||
p = subprocess.check_output(cmd).strip()
|
||||
|
||||
convert_component(project_path, p)
|
||||
|
||||
project_name = project_vars["PROJECT_NAME"]
|
||||
|
Loading…
Reference in New Issue
Block a user