Skip to content
Snippets Groups Projects
Commit 9a331f61 authored by Mick Jordan's avatar Mick Jordan
Browse files

remove jsonlite from package blacklist

parent ee276ce1
No related branches found
No related tags found
No related merge requests found
......@@ -454,9 +454,6 @@ Reason: corebug
Package: lpSolve
Reason: corebug
Package: jsonlite
Reason: corebug
Package: XML
Reason: corebug
......
......@@ -330,8 +330,10 @@ install.pkgs <- function(pkgnames, blacklist, dependents.install=F) {
} else {
if (!dependents.install && install.dependents) {
dependents <- install.order(avail.pkgs, avail.pkgs[pkgname, ])
cat("installing dependents of:", pkgname, "\n")
dependent.install.ok = install.pkgs(dependents, dependents.install=T, blacklist)
if (length(dependents) > 0) {
cat("installing dependents of:", pkgname, "\n")
dependent.install.ok = install.pkgs(dependents, dependents.install=T, blacklist)
}
}
if (dry.run) {
cat("would install:", pkgname, "\n")
......
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