Skip to content

Deployer 20190325

Compare
Choose a tag to compare
@zkamvar zkamvar released this 25 Mar 14:57
· 31 commits to master since this release
e541d61

Produced by @zkamvar via:

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

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

path <- "deployer_2019_03_25"
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:

9e00cd79c938486151d255766cf14375  deployer_2019_03_25_base.tar
86dd7e27307a8155a61630b4dd7f3aa3  deployer_2019_03_25_macosx.tar
910230cf23e00f856879879103030427  deployer_2019_03_25_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("deployer_2019_03_25_base.tar")
untar("deployer_2019_03_25_windows.tar")
untar("deployer_2019_03_25_macosx.tar")