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 3808ea9 commit 7a532e8Copy full SHA for 7a532e8
builder/esp32.py
@@ -125,7 +125,7 @@ def save(self):
125
)
126
127
if not os.path.exists(f'{SCRIPT_DIR}/build'):
128
- os.makedirs(f'{SCRIPT_DIR}/build')
+ os.mkdir(f'{SCRIPT_DIR}/build')
129
130
with open(self.save_file_path, 'w') as f:
131
f.write(PARTITION_HEADER)
@@ -850,7 +850,7 @@ def find_esp32_ports(chip):
850
851
852
if not os.path.exists('micropy_updates/originals/esp32'):
853
- os.mkdir('micropy_updates/originals/esp32')
+ os.makedirs('micropy_updates/originals/esp32')
854
855
856
def update_mpthreadport():
0 commit comments