Skip to content

Deployer 20190911

Compare
Choose a tag to compare
@zkamvar zkamvar released this 11 Sep 16:11
· 11 commits to master since this release

Produced by @zkamvar via:

Rscript generate_deployer.R

Installation

Download the *.tar files in this release.

Expected MD5 hash:

719e8e7bfe27daa97d126c51861cdbad  deployer_2019_09_11_base.tar
11a8ee8013d1cf3279ef96a8dd4c1432  deployer_2019_09_11_extra.tar
af9fe67191c0a1fa37c9ed154ee59993  deployer_2019_09_11_macosx.tar
46da593eb6d50430c8d0a344f5e6b803  deployer_2019_09_11_windows.tar

Please confirm to avoid issues with corrupted downloads. You can do this with

md5file <- 'deployer_2019_09_11_md5sum.txt'
inlines <- readLines(md5file)
xx <- sub("^([0-9a-fA-F]*)(.*)", "\\1", inlines)
nmxx <- names(xx) <- sub("^[0-9a-fA-F]* [ |*](.*)", "\\1", inlines)
print.tar <- function(x, ...) cat(paste0(x, '  ', names(x)), sep = '\n', ...)
the_tars  <- tools::md5sum(dir(pattern = '^deployer_2019_09_11_(base|windows|macosx|extra)\\.tar$'))

class(the_tars) <- 'tar'
class(xx) <- 'tar'

the_tars
xx

identical(xx, the_tars)

(this will take several seconds to run)

To put back together, download these files and then run:

untar('deployer_deployer_2019_09_11_base.tar')
untar('deployer_deployer_2019_09_11_windows.tar')
untar('deployer_deployer_2019_09_11_macosx.tar')
untar('deployer_deployer_2019_09_11_extra.tar')