From 4c32e974c20ebf3246946a3430291a88a8fa39d8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ma=C3=ABlle=20Salmon?= Date: Mon, 18 Mar 2024 09:50:07 +0100 Subject: [PATCH] fix: remove superfluous curly-brace in cli call --- R/render.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/render.R b/R/render.R index 040137789..a96f4cdfa 100644 --- a/R/render.R +++ b/R/render.R @@ -212,7 +212,7 @@ write_if_different <- function(pkg, contents, path, quiet = FALSE, check = TRUE) if (check && !made_by_pkgdown(full_path)) { if (!quiet) { - cli::cli_inform("Skipping {.file {{path}}: not generated by pkgdown") + cli::cli_inform("Skipping {.file {path}}: not generated by pkgdown") } return(FALSE) }