From 98a2a1f579e30b6c5cab7bae6bd54b01f8e0bb74 Mon Sep 17 00:00:00 2001 From: David Klein Date: Thu, 13 Jun 2024 12:11:39 +0200 Subject: [PATCH] Add message about downloading renv/activate.R --- .Rprofile | 1 + 1 file changed, 1 insertion(+) diff --git a/.Rprofile b/.Rprofile index 2b4070ffa..e2fdad41e 100644 --- a/.Rprofile +++ b/.Rprofile @@ -16,6 +16,7 @@ renvVersion <- "1.0.7" if (packageVersion("renv") != renvVersion) { renvLockExisted <- file.exists(renv::paths$lockfile()) renv::install(paste0("renv@", renvVersion)) + message("Downloading 'renv/activate.R' of renv version 1.0.7") download.file("https://raw.githubusercontent.com/remindmodel/remind/b83bb1811ff08d8ee5ba8e834af5dd0080d10e66/renv/activate.R", "renv/activate.R") if (!renvLockExisted) { unlink(renv::paths$lockfile())