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 d470927 commit d2a8497Copy full SHA for d2a8497
builder/esp32.py
@@ -890,11 +890,11 @@ def submodules():
890
cmds.insert(0, [f'cd {SCRIPT_DIR}'])
891
cmds.insert(0, ['. ./export.sh'])
892
cmds.insert(0, ['cd', os.path.abspath(idf_path)])
893
-
+
894
if 'GITHUB_RUN_ID' in os.environ:
895
cmds.insert(0, [f'export "IDF_PATH={os.path.abspath(idf_path)}"'])
896
897
- cmds.extend(submodules_cmd[:])
+ cmds.append(submodules_cmd[:])
898
899
return_code, _ = spawn(cmds, env=env)
900
if return_code != 0:
0 commit comments