Nothing
is_umamba_version_available <- function(umamba_path = NULL) {
cnd_res <- rlang::catch_cnd(
expr = {
avail_bool <- check_micromamba_version(umamba_path)
},
classes = "condathis_umamba_bin_path_not_executable"
)
if (isTRUE(rlang::is_condition(cnd_res))) {
avail_bool <- FALSE
}
return(avail_bool)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.