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 35b61bd commit 55fe7b2Copy full SHA for 55fe7b2
builder/esp32.py
@@ -721,16 +721,16 @@ def compile(): # NOQA
721
cmd = cmd.replace('--before default_reset ', '')
722
cmd = cmd.replace('--after no_reset ', '')
723
724
- if not sys.platform.startswith('win'):
725
- cmds = [
726
- # [f'export "IDF_PATH={os.path.abspath(env["IDF_PATH"])}"'],
727
- ['cd', 'lib/esp-idf'],
728
- ['. ./export.sh'],
729
- ['cd ../..'],
730
- cmd
731
- ]
732
- else:
733
- cmds = cmd
+ # if not sys.platform.startswith('win'):
+ # cmds = [
+ # # [f'export "IDF_PATH={os.path.abspath(env["IDF_PATH"])}"'],
+ # # ['cd', 'lib/esp-idf'],
+ # # ['. ./export.sh'],
+ # # ['cd ../..'],
+ # cmd
+ # ]
+ # else:
+ cmds = [cmd]
734
735
result, _ = spawn(cmds, env=env)
736
if result:
0 commit comments