Skip to content

Commit

Permalink
[SW-1849] Add missing 'rel-' prefix when suggesting correct H2O packa…
Browse files Browse the repository at this point in the history
…ge to install in R (#1745)
  • Loading branch information
jakubhava committed Jan 27, 2020
1 parent 287c1ac commit 0463669
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion r/src/R/package.R
Original file line number Diff line number Diff line change
Expand Up @@ -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'))
}
}

Expand Down

0 comments on commit 0463669

Please sign in to comment.