install deps: only return TRUE in case of error

This commit is contained in:
Patrick Schratz 2024-07-28 11:03:45 +02:00
commit 7ce71cf07b
Signed by: pat-s
GPG key ID: 3C6318841EF78925

View file

@ -71,9 +71,9 @@ build_binary_package <- function(package_name, tag = NULL, codename = NULL,
error = function(e) {
message(sprintf("Error in installing dependencies for package %s with tag %s: %s", package_name[1], tag[1], e))
store_build_metadata(package_name[1], tag[1], platform, error_occurred = TRUE, force = TRUE, error = conditionMessage(e))
return(TRUE)
}
)
return(TRUE)
}
t1 <- Sys.time()