Skip to content

Commit

Permalink
fix: setup broken, extra comma (#76)
Browse files Browse the repository at this point in the history
  • Loading branch information
esiegel authored Dec 12, 2024
1 parent a46f86f commit fa857d6
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions R/eula.R
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down Expand Up @@ -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))

Expand Down

0 comments on commit fa857d6

Please sign in to comment.