R/archive_exists.R

Defines functions archive_exists

# Need to check the version exists on CRAN Archive
archive_exists <- function(package,version){
  require(RCurl)
  urls <- get_archive_url(package,version)
  sapply(urls,url.exists)
}
statisticiansix/dockerise documentation built on Nov. 5, 2019, 9:20 a.m.