From 2a5971b4f84d251c59b3b1ab5f570d4790d80e58 Mon Sep 17 00:00:00 2001 From: raivo-otus Date: Tue, 2 Jun 2026 14:55:31 +0300 Subject: [PATCH] Add small message to execTemplate --- R/execTemplate.R | 1 + 1 file changed, 1 insertion(+) diff --git a/R/execTemplate.R b/R/execTemplate.R index 536169f..4290a51 100644 --- a/R/execTemplate.R +++ b/R/execTemplate.R @@ -15,5 +15,6 @@ execTemplate <- function(scripts_dir, name = "base_template.R") { dest_path <- file.path(scripts_dir, name) file.copy(template_path, dest_path, overwrite = TRUE) + message(sprintf("Created template file at %s", dest_path)) invisible(dest_path) } \ No newline at end of file