Skip to content
Snippets Groups Projects
Commit e44ecd88 authored by Lukas Stadler's avatar Lukas Stadler
Browse files

[GR-2738] Don't abort install of suggests when one package cannot be installed.

PullRequest: fastr/1477
parents 634088e4 bca51597
No related branches found
No related tags found
No related merge requests found
......@@ -629,7 +629,7 @@ install.suggests <- function(pkgnames) {
if (anyNA(dep.status)) {
# case 3
cat("installing Suggests of:", pkgname,":",paste(suggests[is.na(dep.status)], sep=", "), "\n")
dependent.install.ok <- install.pkgs(suggests[is.na(dep.status)], dependents.install=T, log=F)
dependent.install.ok <- install.pkgs(suggests[is.na(dep.status)], dependents.install=F, log=F)
} else {
# case 1
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment