chore: update local/ files
This commit is contained in:
parent
6a62efe646
commit
a78d489aac
1 changed files with 78 additions and 9 deletions
|
|
@ -1,4 +1,6 @@
|
|||
### Scope: List decomisisoned CRAN packages and updates them in the metadata DB
|
||||
library(dplyr)
|
||||
library(bincraftR)
|
||||
archived <- quickcode::archivedPkg() |>
|
||||
filter(arch.status == "decom") |>
|
||||
pull(name)
|
||||
|
|
@ -11,6 +13,7 @@ con <- DBI::dbConnect(RPostgres::Postgres(),
|
|||
)
|
||||
|
||||
pkgs_db <- query_metadata_table() |>
|
||||
filter(removed == FALSE) |>
|
||||
distinct(name) |>
|
||||
pull(name)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue