Merge branch 'fix-deps' into 'master'

Fix local dependency install

See merge request redox-os/installer!53
This commit is contained in:
Jeremy Soller
2025-09-30 19:57:16 -06:00
+1 -1
View File
@@ -96,7 +96,7 @@ fn install_local_pkgar(cookbook: &str, target: &str, packagename: &str, dest: &s
// Recursively install any runtime dependencies.
for dep in pkginfo.depends.iter() {
let depname = dep.as_str();
if !get_head_path(packagename, dest).exists() {
if !get_head_path(depname, dest).exists() {
println!("Installing runtime dependency for {packagename} from local repo: {depname}");
install_local_pkgar(cookbook, target, depname, dest)?;
}