From c5d2dca4eadbe3ab1b232e350aebdd31e2c66dc8 Mon Sep 17 00:00:00 2001 From: David Klein Date: Thu, 13 Jun 2024 15:11:03 +0200 Subject: [PATCH] do not check if library and renv.lock are in sync, because normally renv.lock does not exist --- .Rprofile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.Rprofile b/.Rprofile index e2fdad41e..10dcde8a3 100644 --- a/.Rprofile +++ b/.Rprofile @@ -10,6 +10,9 @@ if (file.exists("renv.lock") && file.exists("README.md") && !file.exists("renv/o message("moved legacy renv.lock to renv/old_renv.lock") } +# do not check if library and renv.lock are in sync, because normally renv.lock does not exist +options(renv.config.synchronized.check = FALSE) + source("renv/activate.R") renvVersion <- "1.0.7"