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 64cad08 commit 831c596Copy full SHA for 831c596
builder/esp32.py
@@ -1401,6 +1401,8 @@ def build_sdkconfig(*args):
1401
with open(SDKCONFIG_PATH, 'w') as f:
1402
f.write('\n'.join(base_config))
1403
1404
+ return args
1405
+
1406
1407
def revert_custom_board():
1408
if custom_board_path is None:
@@ -1424,7 +1426,7 @@ def compile(*args): # NOQA
1424
1426
if ccache:
1425
1427
env['IDF_CCACHE_ENABLE'] = '1'
1428
- build_sdkconfig(*args)
1429
+ args = build_sdkconfig(*args)
1430
1431
1432
@@ -1447,7 +1449,7 @@ def compile(*args): # NOQA
1447
1449
1448
1450
try:
1451
cmd_ = compile_cmd[:]
- cmd_.extend(list(args))
1452
+ cmd_.extend(args)
1453
1454
ret_code, output = spawn(cmd_, env=env, cmpl=True)
1455
0 commit comments