Produced by @zkamvar via:
Rscript generate_deployer.R
Installation
Download the *.tar files in this release.
Expected MD5 hash:
85bb083c2ae4b000c589bcdf12ad7481 deployer_2019_10_24_base.tar
68c2c40c796d4b84686fe056c0232f6f deployer_2019_10_24_extra.tar
575b3d280cfe62f3fe66a4cbb99e96f4 deployer_2019_10_24_macosx.tar
b8ee9e99d5d48b563e5ab39e6c75a70a deployer_2019_10_24_windows.tar
Please confirm to avoid issues with corrupted downloads. You can do this with
md5file <- 'deployer_2019_10_24_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_10_24_(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_10_24_base.tar')
untar('deployer_deployer_2019_10_24_windows.tar')
untar('deployer_deployer_2019_10_24_macosx.tar')
untar('deployer_deployer_2019_10_24_extra.tar')