install deps: only return TRUE in case of error
This commit is contained in:
parent
1efb5232eb
commit
7ce71cf07b
1 changed files with 1 additions and 1 deletions
|
|
@ -71,9 +71,9 @@ build_binary_package <- function(package_name, tag = NULL, codename = NULL,
|
||||||
error = function(e) {
|
error = function(e) {
|
||||||
message(sprintf("Error in installing dependencies for package %s with tag %s: %s", package_name[1], tag[1], 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))
|
store_build_metadata(package_name[1], tag[1], platform, error_occurred = TRUE, force = TRUE, error = conditionMessage(e))
|
||||||
|
return(TRUE)
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
return(TRUE)
|
|
||||||
}
|
}
|
||||||
|
|
||||||
t1 <- Sys.time()
|
t1 <- Sys.time()
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue