Skip to content

Deployer 20180919

Compare
Choose a tag to compare
@zkamvar zkamvar released this 19 Sep 10:24
· 63 commits to master since this release

Produced by @zkamvar via:

nomad::build("reconhub/deployer", "20180919")

Much like the previous release, we will separate the bundles by os type:

path <- "20180919"
sys_tar <- Sys.which("tar")
tar(sprintf("%s_base.tar", path), path,
    extra_flags = sprintf("-v --exclude=%s/bin", path),
    tar = sys_tar)
tar(sprintf("%s_windows.tar", path), file.path(path, "bin/windows"),
    extra_flags = "-v",
    tar = sys_tar)
tar(sprintf("%s_macosx.tar", path), file.path(path, "bin/macosx"),
    extra_flags = "-v",
    tar = sys_tar)

# calculate and print md5sums
the_tars  <- tools::md5sum(dir(pattern = "\\.tar$"))
print.tar <- function(x, ...) cat(paste0(x, '  ', names(x)), sep = "\n")
class(the_tars) <- "tar"
the_tars

Installation

Download the three .tar files in this release.

Expected MD5 hash:

c4a4bda5fb2d5d33b2fe95684ce64cbb  20180919_base.tar                                                                                                                                      
d5565339ac1473751d46fc4d46b9250a  20180919_macosx.tar                                                                                                                                    
e82a97daec020ae552fc37f6c7c2395b  20180919_windows.tar

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

tools::md5sum(dir(pattern = "\.tar$"))

(this will take several seconds to run)

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

untar("20180919_base.tar")
untar("20180919_windows.tar")
untar("20180919_macosx.tar")