Merge branch 'bugfix/eclipse_make_decode_v4.2' into 'release/v4.2'

tools: Fix Eclipse build: “UnicodeDecodeError: 'ascii' codec can't decode byte” (v4.2)

See merge request espressif/esp-idf!12358
This commit is contained in:
Ivan Grokhotkov 2021-02-19 15:55:37 +00:00
commit af1ebd7e01

View File

@ -20,7 +20,7 @@ def check_path(path):
pass
paths[path] = path # cache as failed, replace with success if it works
try:
winpath = subprocess.check_output(["cygpath", "-w", path]).decode().strip()
winpath = subprocess.check_output(['cygpath', '-w', path]).decode('utf-8').strip()
except subprocess.CalledProcessError:
return path # something went wrong running cygpath, assume this is not a path!
if not os.path.exists(winpath):