minor
This commit is contained in:
parent
cb0cbbca7b
commit
7610e0507b
1 changed files with 38 additions and 18 deletions
|
|
@ -26,8 +26,11 @@ set_codename <- function(codename) {
|
|||
return(codename)
|
||||
}
|
||||
|
||||
#' Helper function to set the path for binary package outputs
|
||||
#' @export
|
||||
set_bin_path <- function(r_version_minor, build_for_minor, local_build_root, codename) {
|
||||
set_bin_path <- function(
|
||||
r_version_minor, build_for_minor,
|
||||
local_build_root, codename) {
|
||||
if (!build_for_minor) {
|
||||
path <- sprintf(
|
||||
"%s/__linux__/%s/latest/src/contrib",
|
||||
|
|
@ -39,6 +42,7 @@ set_bin_path <- function(r_version_minor, build_for_minor, local_build_root, cod
|
|||
local_build_root, codename, r_version_minor
|
||||
)
|
||||
}
|
||||
cli::cli_alert_warning("DEBUG: path {path}.")
|
||||
|
||||
return(path)
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue