Upgrade Gentoo with --with-bdeps=y (fix #382) (#390)

This commit is contained in:
Roey Darwish Dror
2020-04-03 13:43:12 +03:00
committed by GitHub
parent b8496064ec
commit 2f4267fd41

View File

@@ -274,7 +274,7 @@ fn upgrade_gentoo(sudo: &Option<PathBuf>, run_type: RunType) -> Result<()> {
run_type run_type
.execute(&sudo) .execute(&sudo)
.arg("/usr/bin/emerge") .arg("/usr/bin/emerge")
.args(&["-uDNa", "world"]) .args(&["-uDNa", "--with-bdeps=y", "world"])
.check_run()?; .check_run()?;
} else { } else {
print_warning("No sudo detected. Skipping system upgrade"); print_warning("No sudo detected. Skipping system upgrade");