Skip to content

Commit 638370e

Browse files
committed
updates the esp32 build
1 parent 70b6e79 commit 638370e

File tree

2 files changed

+1
-5
lines changed

2 files changed

+1
-5
lines changed

builder/__init__.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ def _convert_line(lne):
258258
return lne
259259

260260

261-
def process_output(myproc, out_to_screen, spinner, cmpl, out_queue): #output-consuming thread
261+
def process_output(myproc, out_to_screen, spinner, cmpl, out_queue):
262262
line = b''
263263
err_line = b''
264264

@@ -337,9 +337,6 @@ def process_output(myproc, out_to_screen, spinner, cmpl, out_queue): #output-con
337337
sys.stdout.flush()
338338

339339

340-
myprocess = subprocess.Popen('myprogram.exe', stdout=subprocess.PIPE) #output-producing process
341-
342-
343340
def spawn(cmd_, out_to_screen=True, spinner=False, env=None, cmpl=False):
344341
if env is None:
345342
env = os.environ

builder/esp32.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,6 @@ def get_idf_build_environment():
6464
with open('build/setup_environment.bat', 'w') as file:
6565
file.write(idf_env_bat_script)
6666

67-
6867
cmd_ = ['C:\\Windows\\System32\\WindowsPowerShell\\v1.0\\powershell.exe -ExecutionPolicy Bypass -NonInteractive -File "build\\install_esp-idf.ps1"']
6968
result, _ = spawn(cmd_)
7069
if result != 0:

0 commit comments

Comments
 (0)