From a26a3ed92617394af7acac74430e54e65390be3b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=A1bor=20Cs=C3=A1rdi?= Date: Sun, 17 Mar 2024 09:20:10 +0100 Subject: [PATCH] Update embedded gitcreds --- R/git-auth.R | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/R/git-auth.R b/R/git-auth.R index 609bf819..ab49842e 100644 --- a/R/git-auth.R +++ b/R/git-auth.R @@ -1,4 +1,6 @@ +# nocov start + gitcreds_get <- NULL gitcreds_set <- NULL gitcreds_delete <- NULL @@ -465,7 +467,8 @@ gitcreds_env <- function() { c( GCM_INTERACTIVE = "Never", GCM_MODAL_PROMPT = "false", - GCM_VALIDATE = "false" + GCM_VALIDATE = "false", + GCM_GUI_PROMPT = "false" ) } @@ -812,3 +815,5 @@ read_file <- function(path, ...) { environment() }) + +# nocov end