dummy change

This commit is contained in:
Patrick Schratz 2025-01-11 12:02:12 +01:00
commit 452851302a
Signed by: pat-s
GPG key ID: 3C6318841EF78925

View file

@ -14,7 +14,7 @@ cran_pkgs <- tools::CRAN_package_db() |>
data <- dbGetQuery(con, "SELECT name,platform,arch,removed,error_occurred FROM single_builds;")
pkgs <- data |>
filter(platform == "redhat-8", arch == "arm64") |>
filter(platform == "alpine-320", arch == "arm64") |>
filter(removed == FALSE) |>
filter(error_occurred == FALSE) |>
distinct(name) |>
@ -22,7 +22,7 @@ pkgs <- data |>
pkgs = setdiff(cran_pkgs, pkgs)
# Format, remove line breaks, and print as a single line
formatted_pkgs <- gsub('"', "'", capture.output(dput(as.character(na.omit(pkgs[100:900])))))
formatted_pkgs <- gsub('"', "'", capture.output(dput(as.character(na.omit(pkgs[1:900])))))
formatted_pkgs_one_line <- paste(formatted_pkgs, collapse = " ")