From 9ed0de6db99b2415400ecc6f8d0df2f5b1577fef Mon Sep 17 00:00:00 2001 From: salvafern Date: Wed, 26 Apr 2023 12:30:32 +0200 Subject: [PATCH] fix: .txt to caps .TXT to fix ubuntu r cmd check --- R/08_mrp_get.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/08_mrp_get.R b/R/08_mrp_get.R index 0773485..4f490d7 100644 --- a/R/08_mrp_get.R +++ b/R/08_mrp_get.R @@ -190,7 +190,7 @@ mrp_get_sanity_check <- function(resp){ try_clean_up <- function(path) try({file.remove(path)}, silent = TRUE) check_server_warning <- function(cached_unzip_path){ - readme <- file.path(cached_unzip_path, "README.txt") + readme <- file.path(cached_unzip_path, "README.TXT") if(file.exists(readme)){ msg <- readLines(readme, warn = FALSE, skipNul = TRUE)