We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents fa9b974 + 100f131 commit a1e2b0bCopy full SHA for a1e2b0b
main.c
@@ -203,6 +203,9 @@ static void start_mp(safe_mode_t safe_mode) {
203
mp_obj_list_append(mp_sys_path, MP_OBJ_NEW_QSTR(MP_QSTR__slash_lib));
204
205
mp_obj_list_init((mp_obj_list_t *)mp_sys_argv, 0);
206
+
207
+ // Always return to root
208
+ common_hal_os_chdir("/");
209
}
210
211
static void stop_mp(void) {
@@ -457,8 +460,6 @@ static bool __attribute__((noinline)) run_code_py(safe_mode_t safe_mode, bool *s
457
460
usb_setup_with_vm();
458
461
#endif
459
462
- // Always return to root before trying to run files.
- common_hal_os_chdir("/");
463
// Check if a different run file has been allocated
464
if (next_code_configuration != NULL) {
465
next_code_configuration->options &= ~SUPERVISOR_NEXT_CODE_OPT_NEWLY_SET;
0 commit comments