no progressr
This commit is contained in:
parent
7bcd6fa166
commit
2aecc2ca20
1 changed files with 9 additions and 9 deletions
|
|
@ -31,7 +31,7 @@ process_cran_updates <- function(
|
|||
|
||||
all_pkgs <- dplyr::bind_rows(updated_pkgs, new_pkgs)
|
||||
|
||||
purrr::walk2(all_pkgs$name, all_pkgs$version, ~ build_binary_package(.x, .y, platform = platform))
|
||||
# purrr::walk2(all_pkgs$name, all_pkgs$version, ~ build_binary_package(.x, .y, platform = platform))
|
||||
|
||||
if (prune) {
|
||||
removed_pkgs <- get_removed_cran_packages(interval)
|
||||
|
|
@ -57,8 +57,8 @@ process_cran_updates <- function(
|
|||
|
||||
purrr::walk(removed_pkgs$name, ~ {
|
||||
cli::cli_alert("{.fun process_cran_updates}: Removing package {.pkg {.x}} from S3.")
|
||||
files_filtered <- grep("bold_", files, value = TRUE)
|
||||
s3fs::s3_file_delete_async(files_filtered)
|
||||
files_filtered <- grep(sprintf("%s_", .x), files, value = TRUE)
|
||||
s3fs::s3_file_delete(files_filtered)
|
||||
|
||||
cli::cli_alert_success("{.fun process_cran_updates}: Successfully removed {.pkg {basename(files_filtered)}} from S3.")
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue