Skip to content

Commit d2a8497

Browse files
committed
changes handling of collecting submodules for the ESP32
1 parent d470927 commit d2a8497

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

builder/esp32.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -890,11 +890,11 @@ def submodules():
890890
cmds.insert(0, [f'cd {SCRIPT_DIR}'])
891891
cmds.insert(0, ['. ./export.sh'])
892892
cmds.insert(0, ['cd', os.path.abspath(idf_path)])
893-
893+
894894
if 'GITHUB_RUN_ID' in os.environ:
895895
cmds.insert(0, [f'export "IDF_PATH={os.path.abspath(idf_path)}"'])
896896

897-
cmds.extend(submodules_cmd[:])
897+
cmds.append(submodules_cmd[:])
898898

899899
return_code, _ = spawn(cmds, env=env)
900900
if return_code != 0:

0 commit comments

Comments
 (0)