feat: enhance package management with keep paths and root filesystem support

This commit is contained in:
2026-03-09 02:26:20 -05:00
parent 63e7daa479
commit e367cb02d7
5 changed files with 412 additions and 129 deletions
+1 -1
View File
@@ -161,7 +161,7 @@ struct Resolver<'a> {
impl<'a> Resolver<'a> {
fn new(config: &'a Config, rootfs: &'a Path, opts: PlannerOptions) -> Self {
let db_path = config.db_dir.join("packages.db");
let db_path = config.installed_db_path(rootfs);
let pkg_index = PackageIndex::build_with_repo_dir(Some(config.repo_clone_dir.clone()));
Self {
config,