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 94878c0 commit 1030bf3Copy full SHA for 1030bf3
1 file changed
ports/alif/main.c
@@ -134,15 +134,15 @@ int main(void) {
134
pyexec_frozen_module("_boot.py", false);
135
136
// Execute user scripts.
137
- int ret = pyexec_file_if_exists("boot.py");
+ int ret = pyexec_file_if_exists("boot.py", true);
138
#if MICROPY_HW_ENABLE_USBDEV
139
mp_usbd_init();
140
#endif
141
if (ret & PYEXEC_FORCED_EXIT) {
142
goto soft_reset_exit;
143
}
144
if (pyexec_mode_kind == PYEXEC_MODE_FRIENDLY_REPL && ret != 0) {
145
- ret = pyexec_file_if_exists("main.py");
+ ret = pyexec_file_if_exists("main.py", true);
146
147
148
0 commit comments