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 ebbe689 commit 3bb2badCopy full SHA for 3bb2bad
builder/esp32.py
@@ -762,8 +762,9 @@ def submodules():
762
env, cmds = setup_idf_environ()
763
764
wifi_lib = os.path.abspath(os.path.join(idf_path, 'components/esp_wifi/lib'))
765
- if not os.path.exists(wifi_lib):
+ berkeley_db = os.path.abspath('lib/micropython/lib/berkeley-db-1.xx/README')
766
767
+ if not os.path.exists(berkeley_db) or not os.path.exists(wifi_lib):
768
cmds.append(submodules_cmd)
769
770
return_code, _ = spawn(cmds, env=env)
0 commit comments