Skip to content

Commit 79fc689

Browse files
try fix failed test
1 parent 15e5b67 commit 79fc689

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

R/configuration.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,8 @@ get_codecheck_yml_osf <- function(x) {
7878
#' @importFrom httr GET content
7979
#' @importFrom yaml yaml.load
8080
get_codecheck_yml_gitlab <- function(x) {
81-
response <- httr::GET(paste0(CONFIG$HYPERLINKS[["gitlab"]], x, "/-/raw/main/codecheck.yml?inline=false"))
81+
link <- paste0(CONFIG$HYPERLINKS[["gitlab"]], x, "/-/raw/main/codecheck.yml?inline=false")
82+
response <- httr::GET(link)
8283

8384
if (response$status == 200) {
8485
content <- httr::content(response, as = "text", encoding = "UTF-8")

0 commit comments

Comments
 (0)