diff --git a/.Rprofile b/.Rprofile index e0817ce..4ac20e3 100644 --- a/.Rprofile +++ b/.Rprofile @@ -1,4 +1,6 @@ -if (readline() == "a") {source("renv/activate.R")} else {message("renv not activated, continuing...")} +message("Do you want to use `renv::activate`? (Warning: not useable within Docker!) [Y/n]\n") + +if (readline() %in% c("", "Y", "y")) {source("renv/activate.R")} else {message("renv not activated, continuing...")} message('You are in your Teen Preg project') pts <- function(size) return(size*5/14)