This commit is contained in:
Patrick Schratz 2024-09-01 10:43:43 +02:00
commit 2a8e859dc3
Signed by: pat-s
GPG key ID: 3C6318841EF78925

View file

@ -10,17 +10,26 @@ process_cran_updates(
platform,
local_clone_dir,
interval = lubridate::today(),
prune = TRUE,
build_for_minor = FALSE,
codename = NULL,
r_minor_version = NULL,
local_build_root = ".",
endpoint = "https://s3.eu-central-003.backblazeb2.com",
region = "eu-central-003",
bucket = "devxy-arm64-r-binaries"
bucket = "devxy-arm64-r-binaries",
process_updated = TRUE,
process_new = TRUE,
process_removed = TRUE
)
}
\description{
Packages which got removed from CRAN can be deleted by setting \code{prune = TRUE}.
Argument \code{interval} allows to specify a range which should be processed.
}
\examples{
process_cran_updates(
interval = lubridate::interval(lubridate::today() - 2, lubridate::today() - 20),
process_updated = FALSE, process_new = FALSE
)
}