From 9dd21b3181feb34c3fd89c0c556f4cceccd376c7 Mon Sep 17 00:00:00 2001 From: Eric Siegel Date: Thu, 12 Dec 2024 09:04:36 -0800 Subject: [PATCH] fix: setup broken, extra comma --- R/eula.R | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/R/eula.R b/R/eula.R index cd43804..d0e332f 100644 --- a/R/eula.R +++ b/R/eula.R @@ -31,7 +31,7 @@ eula <- function() { while (!(resp %in% c("y", "yes", "n", "no"))) { prompt <- paste0( prompt_begin, - "Do you accept the End-User License Agreement\n(y/yes or n/no): ", + "Do you accept the End-User License Agreement\n(y/yes or n/no): " ) resp <- readline(prompt = prompt) @@ -83,7 +83,6 @@ eula_lock_file <- function() { #' Check to see if we have auto accepted the eula #' @noRd auto_accepted_eula <- function() { - print("Xalling") value <- Sys.getenv(AUTO_ACCEPT_ENV_VAR, unset = "false") value <- trimws(tolower(value))