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 3f71114 commit bc76f8cCopy full SHA for bc76f8c
server/src/core/odoo.rs
@@ -178,11 +178,11 @@ impl SyncOdoo {
178
} else {
179
result.push(env::current_dir().unwrap().join("typeshed").join("stubs").sanitize());
180
}
181
- 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");
182
if next_to_exe.exists() {
183
result.push(next_to_exe.sanitize());
184
185
- result.push(env::current_dir().unwrap().join("typeshed").join("additional_stubs").sanitize());
+ result.push(env::current_dir().unwrap().join("additional_stubs").sanitize());
186
187
result
188
0 commit comments