diff --git a/server/src/core/odoo.rs b/server/src/core/odoo.rs index 40a06ffc..ca72d060 100644 --- a/server/src/core/odoo.rs +++ b/server/src/core/odoo.rs @@ -174,11 +174,11 @@ impl SyncOdoo { } else { result.push(env::current_dir().unwrap().join("typeshed").join("stubs").sanitize()); } - let next_to_exe = env::current_exe().unwrap().parent().unwrap().join("typeshed").join("additional_stubs"); + let next_to_exe = env::current_exe().unwrap().parent().unwrap().join("additional_stubs"); if next_to_exe.exists() { result.push(next_to_exe.sanitize()); } else { - result.push(env::current_dir().unwrap().join("typeshed").join("additional_stubs").sanitize()); + result.push(env::current_dir().unwrap().join("additional_stubs").sanitize()); } result }