From a11906f04ced678aa1a8da919f47ae7d0e821448 Mon Sep 17 00:00:00 2001 From: Colin Gillespie Date: Sun, 11 Aug 2024 19:08:54 +0100 Subject: [PATCH] feat: Ensure config file must exist --- R/app_config.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/app_config.R b/R/app_config.R index 1e359a6d7..fece6d03b 100644 --- a/R/app_config.R +++ b/R/app_config.R @@ -9,7 +9,7 @@ #' #' @noRd app_sys <- function(...) { - system.file(..., package = "riskassessment") + system.file(..., package = "riskassessment", mustWork = TRUE) }