dummy change
This commit is contained in:
parent
7ae88e326d
commit
452851302a
1 changed files with 2 additions and 2 deletions
|
|
@ -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 = " ")
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue