We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61d4dc5 commit a808cffCopy full SHA for a808cff
builder/esp32.py
@@ -1053,13 +1053,13 @@ def compile(*args): # NOQA
1053
python_path,
1054
'-c "import esptool;print(esptool.__file__);"'
1055
]],
1056
- out_to_screen=True
+ out_to_screen=False
1057
)
1058
1059
if result != 0:
1060
raise RuntimeError('ERROR collecting esptool path')
1061
1062
- tool_path = os.path.split(os.path.split(tool_path.strip())[0])
+ tool_path = os.path.split(os.path.split(tool_path.strip())[0])[0]
1063
sys.path.insert(0, tool_path)
1064
1065
import esptool
0 commit comments