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 81ab81e commit 8f43886Copy full SHA for 8f43886
oma-refresh/src/db.rs
@@ -236,10 +236,18 @@ impl<'a> OmaRefresh<'a> {
236
}
237
238
#[cfg(not(feature = "apt"))]
239
- let list_file = self.source.join("etc/apt/sources.list").to_string_lossy().to_string();
+ let list_file = self
240
+ .source
241
+ .join("etc/apt/sources.list")
242
+ .to_string_lossy()
243
+ .to_string();
244
245
- let list_dir = self.source.join("etc/apt/sources.list.d").to_string_lossy().to_string();
246
+ let list_dir = self
247
248
+ .join("etc/apt/sources.list.d")
249
250
251
252
scan_sources_lists_paths_from_sysroot(list_file, list_dir)
253
.await
0 commit comments