add update_packages() fix #5
This commit is contained in:
parent
ea61e73925
commit
9b8fd610d2
1 changed files with 334 additions and 23 deletions
|
|
@ -9,6 +9,7 @@ export(list_metadata_tables)
|
|||
export(query_metadata_table)
|
||||
export(set_bin_path)
|
||||
export(set_codename)
|
||||
export(update_packages)
|
||||
export(upload_package_index)
|
||||
export(upload_single_binary_to_s3)
|
||||
import(progressr)
|
||||
|
|
@ -22,6 +23,7 @@ importFrom(RPostgres,Postgres)
|
|||
importFrom(cli,cli_alert)
|
||||
importFrom(cranlike,add_PACKAGES)
|
||||
importFrom(cranlike,update_PACKAGES)
|
||||
importFrom(dplyr,bind_rows)
|
||||
importFrom(dplyr,filter)
|
||||
importFrom(dplyr,group_by)
|
||||
importFrom(dplyr,n)
|
||||
|
|
@ -33,8 +35,11 @@ importFrom(future,plan)
|
|||
importFrom(future.apply,future_mapply)
|
||||
importFrom(gert,git_clone)
|
||||
importFrom(gert,git_config_global_set)
|
||||
importFrom(lubridate,"%within%")
|
||||
importFrom(lubridate,as_date)
|
||||
importFrom(lubridate,dmy_hms)
|
||||
importFrom(lubridate,interval)
|
||||
importFrom(lubridate,today)
|
||||
importFrom(magrittr,"%>%")
|
||||
importFrom(pak,local_install_dev_deps)
|
||||
importFrom(pkgbuild,build)
|
||||
|
|
@ -42,6 +47,7 @@ importFrom(progressr,progressor)
|
|||
importFrom(progressr,with_progress)
|
||||
importFrom(purrr,list_rbind)
|
||||
importFrom(purrr,map)
|
||||
importFrom(purrr,walk2)
|
||||
importFrom(s3fs,s3_dir_ls)
|
||||
importFrom(s3fs,s3_file_exists)
|
||||
importFrom(s3fs,s3_file_system)
|
||||
|
|
|
|||
Loading…
Reference in a new issue