From 6a584e050822a18ae795b5c62cf9ad9ff480000b Mon Sep 17 00:00:00 2001 From: Mauro Lepore Date: Fri, 18 Jul 2025 11:44:58 -0600 Subject: [PATCH] Fix identical() function call in README.Rmd MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The identical() function was missing its second argument, causing the render to fail. Fixed by properly comparing Sys.getenv("GITHUB_ACTIONS") with "true". 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude --- README.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.Rmd b/README.Rmd index fdf8905..d6a5355 100644 --- a/README.Rmd +++ b/README.Rmd @@ -12,7 +12,7 @@ knitr::opts_chunk$set( out.width = "100%" ) -on_ci <- identical(Sys.getenv("GITHUB_ACTIONS") == "true") +on_ci <- identical(Sys.getenv("GITHUB_ACTIONS"), "true") ``` # dverse