From 0463669b07cea5e4f2f6bb080afa124362f61fa8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20H=C3=A1va?= Date: Tue, 28 Jan 2020 08:10:08 +1300 Subject: [PATCH] [SW-1849] Add missing 'rel-' prefix when suggesting correct H2O package to install in R (#1745) --- r/src/R/package.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/r/src/R/package.R b/r/src/R/package.R index e293fa425e..4744f6119f 100644 --- a/r/src/R/package.R +++ b/r/src/R/package.R @@ -19,7 +19,7 @@ verify_h2o_version <- function(h2o_version, h2o_build_name, h2o_build_version, s if ("package:h2o" %in% search()) { detach("package:h2o", unload = TRUE) } if (isNamespaceLoaded("h2o")){ unloadNamespace("h2o") } remove.packages("h2o") - install.packages("h2o", type = "source", repos = "https://h2o-release.s3.amazonaws.com/h2o/', h2o_build_name ,'/', h2o_build_version ,'/R")\n')) + install.packages("h2o", type = "source", repos = "https://h2o-release.s3.amazonaws.com/h2o/rel-', h2o_build_name ,'/', h2o_build_version ,'/R")\n')) } }