add deps_verbose arg
This commit is contained in:
parent
b98c79e3c1
commit
d643ba185c
1 changed files with 10 additions and 3 deletions
|
|
@ -13,6 +13,7 @@ build_binary_package <- function(package_name, tag = NULL, codename = NULL,
|
|||
local_clone_dir = "/tmp",
|
||||
platform = NULL,
|
||||
install_system_dependencies = TRUE,
|
||||
deps_verbose = FALSE,
|
||||
debug = FALSE,
|
||||
force = FALSE,
|
||||
archive = TRUE) {
|
||||
|
|
@ -79,7 +80,7 @@ build_binary_package <- function(package_name, tag = NULL, codename = NULL,
|
|||
if (install_system_dependencies) {
|
||||
tryCatch(
|
||||
{
|
||||
install_package_system_dependencies(package_name, tag, platform, local_clone_dir)
|
||||
install_package_system_dependencies(package_name, tag, platform, local_clone_dir, deps_verbose)
|
||||
},
|
||||
# NB: here we need to use conditionMessage() to extract the actual error - as opposed to using $stderr for errors within the tryCatch used in the future* calls
|
||||
error = function(e) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue